A sleek and minimal portfolio website built with Next.js, showcasing professional experience and projects in a clean, user-friendly design. π―
Follow the steps below to run the project locally:
Ensure you have the following installed:
-
Clone the repository:
git clone https://github.com/psparwez/minimal-portfolio.git cd minimal-portfolio
-
Install dependencies:
pnpm install # or npm install
-
Set up environment variables:
Create a
.env.local
file in the root directory and add the following:SMTP_USERNAME=your_smtp_username SMTP_PASSWORD=your_smtp_password MAIL_RECEIVER_ADDRESS=your_email@example.com
-
Start the development server:
pnpm dev # or npm run dev
Open http://localhost:3000 in your browser to see the app.
To create an optimized build for production:
pnpm build
pnpm start
# or
npm run build
npm start