This repository contains the source code for Abil's personal portfolio website. The website is built using Next.js, a popular React framework for building server-rendered applications. It is styled using Tailwind CSS.
To run the website locally, you need to have Node.js and pnpm (Package Manager) installed on your machine. Follow these steps to get started:
- Clone this repository to your local machine using the following command:
git clone https://github.com/ByteCrak07/portfolio.git
- Navigate to the project directory:
cd portfolio-website
- Install the dependencies:
pnpm install
To start the development server and run the website locally, use the following command:
pnpm run dev
This will start the development server on http://localhost:3000. Open your web browser and visit this URL to see the website.
To deploy the website to a production environment, you can follow these steps:
- Build the optimized production-ready version of the website:
pnpm run build
- Start the production server:
pnpm start
This project is licensed under the MIT License. Feel free to use and modify the code as per your needs.