<!DOCTYPE html>
Social Links Profile
In this tutorial, we will learn how to create a social links profile using Next.js, Tailwind CSS, and Vite.js. We will use Next.js for server-side rendering, Tailwind CSS for styling, and Vite.js for fast development.
To get started, make sure you have Node.js and npm installed on your machine. You can create a new Next.js project by running the following command:
npx create-next-app my-social-profile
Next, install Tailwind CSS and Vite.js by running the following commands:
npm install tailwindcss
npm install vite
Now, create a new file called index.js
in the pages
directory of your Next.js project. Add the following code to create a basic layout for your social links profile:
{/* index.js */}
import React from 'react';
import Link from 'next/link';
const SocialLinksProfile = () => {
return (
<div className="container mx-auto">
<h2 className="text-3xl font-bold my-4">My Social Links</h2>
<ul>
<li>
<Link href="https://twitter.com">
<a className="text-blue-500">Twitter</a>
</Link>
</li>
<li>
<Link href="https://facebook.com">
<a className="text-blue-500">Facebook</a>
</Link>
</li>
<li>
<Link href="https://linkedin.com">
<a className="text-blue-500">LinkedIn</a>
</Link>
</li>
</ul>
</div>
);
};
export default SocialLinksProfile;
Finally, run your Next.js project using Vite.js by running the following command:
npx vite dev
Your social links profile should now be accessible at http://localhost:3000
. You can customize the styling of your profile using Tailwind CSS utility classes.
Code: https://sub4unlock.io/3AdgG