This is a Next.js project bootstrapped with create-next-app.
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun devOpen http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.tsx. The page auto-updates as you edit the file.
This project uses next/font to automatically optimize and load Geist, a new font family for Vercel.
This project includes a contact form that sends emails using Nodemailer. To make it work:
- Copy
.env.exampleto.env.local:
cp .env.example .env.local- Edit
.env.localand provide your email credentials:
EMAIL_USER=your.email@gmail.com
EMAIL_PASS=your-password-or-app-password
If you're using Gmail:
- For accounts without 2-factor authentication: Enable "Less secure app access" in your Google account settings.
- For accounts with 2-factor authentication: Generate an App Password at https://myaccount.google.com/apppasswords and use it as the
EMAIL_PASS.
For non-Gmail providers, specify the host and port in your .env.local:
EMAIL_HOST=your-smtp-server.com
EMAIL_PORT=587
EMAIL_USER=your-email
EMAIL_PASS=your-password
Common providers:
- Outlook/Hotmail:
smtp.office365.com(port 587) - Yahoo Mail:
smtp.mail.yahoo.com(port 587)
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.