A modern, responsive personal website built with Next.js, TailwindCSS, and Sanity.io.
- Modern, responsive design with dark mode support using next-themes
- Dynamic content management with Sanity.io
- Server-side rendering with Next.js App Router
- Experience timeline with sorting and filtering
- Project showcase with image support
- Contact form with email integration using Resend
- SEO optimized with Next.js Metadata API
- TypeScript for type safety
- Tailwind CSS for styling with custom design system
- Comprehensive test coverage with Jest and React Testing Library
- Security headers and CSP configuration
- Responsive images with next/image optimization
- Node.js 18.17.0 or later
- npm or yarn
- A Sanity.io account
- A Resend account for email functionality
-
Clone the repository: ```bash git clone cd personal-site ```
-
Install dependencies: ```bash npm install ```
-
Create a
.env.local
file in the root directory and add your environment variables: ```NEXT_PUBLIC_SANITY_PROJECT_ID="your-project-id" NEXT_PUBLIC_SANITY_DATASET="production" SANITY_API_TOKEN="your-sanity-api-token"
RESEND_API_KEY="your-resend-api-key" ```
Note:
- For local development, use
.env.local
- For production, add these variables in your Vercel project settings
- Never commit your actual API keys to the repository
- For local development, use
-
Start the development server: ```bash npm run dev ```
-
Open http://localhost:3000 with your browser to see the result.
-
To access the Sanity Studio, visit http://localhost:3000/studio
/src/app
- Next.js app router pages and layouts/(site)
- Main website routes/api
- API routes for contact form/studio
- Sanity Studio configuration
/src/components
- React components/sections
- Page-specific components/shared
- Reusable components
/src/lib
- Library code and configurations/sanity
- Sanity client and configurations
/src/types
- TypeScript type definitions/public
- Static assets/src/styles
- Global styles and Tailwind CSS configuration/__tests__
- Test files and test utilities
Run the test suite: ```bash
npm test
npm run test:watch
npm run test:coverage ```
The site is optimized for deployment on Vercel:
- Push your code to a Git repository
- Import the project to Vercel
- Add your environment variables in Vercel dashboard:
- NEXT_PUBLIC_SANITY_PROJECT_ID
- NEXT_PUBLIC_SANITY_DATASET
- SANITY_API_TOKEN
- RESEND_API_KEY
- Deploy!
Content is managed through Sanity Studio. To add or edit content:
- Navigate to
/studio
on your deployed site or locally - Log in with your Sanity credentials
- Create and publish your content
- Projects
- Experience
- About information
- Contact information
The site includes several security features:
- Content Security Policy (CSP) headers
- Strict CORS policies
- XSS protection
- Frame protection
- Secure environment variable handling
© 2025 Sagar Sane. All rights reserved.
This is a personal website and portfolio. The code and content are not licensed for reuse.