This repository contains the source code for my personal website, where I showcase my projects and share a bit about myself.
This website is built with:
- Next.js: A React framework for building performant and SEO-friendly web applications.
- Tailwind CSS: A utility-first CSS framework for rapidly building custom designs.
- TypeScript: A superset of JavaScript that adds static typing for improved code quality and developer experience.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
Prerequisites:
- Node.js and npm (or yarn) installed on your machine.
Installation:
- Clone the repository:
git clone https://github.com/Terminal239/personal-website.git
- Navigate to the project directory:
cd personal-website
- Install the dependencies:
npm install
Development Server:
npm run dev
Open http://localhost:3000 with your browser to see the website.
Building for Production:
npm run build
This will create a production-ready build of your website in the out
directory.
Linting:
npm run lint
This will run ESLint to check for any code style issues.