A modern, responsive portfolio website built with Next.js, Tailwind CSS, and Framer Motion. This portfolio showcases my projects, skills, experience, and certifications with a striking red, white, and black color scheme.
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Open 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 Poppins and Roboto Mono from Google Fonts.
├── public/ # Static assets
│ ├── fonts/ # Custom fonts
│ └── images/ # Images for projects and profile
├── src/
│ ├── app/ # Next.js App Router structure
│ │ ├── components/ # Reusable components
│ │ │ ├── BackToTop.tsx # Back to top button
│ │ │ ├── CodeRainBackground.tsx # Matrix-style code rain
│ │ │ ├── ContactForm.tsx # Contact form component
│ │ │ ├── Footer.tsx # Site footer
│ │ │ ├── Navbar.tsx # Navigation bar
│ │ │ ├── ScrollProgressBar.tsx # Progress indicator
│ │ │ ├── ThemeToggle.tsx # Dark/light mode toggle
│ │ │ └── ThreeScene.tsx # 3D scene (alternative)
│ │ ├── context/ # React context providers
│ │ │ └── ThemeContext.tsx # Theme management
│ │ ├── sections/ # Main page sections
│ │ │ ├── AboutSection.tsx # About me
│ │ │ ├── CertificationsSection.tsx # Certifications
│ │ │ ├── ContactSection.tsx # Contact information
│ │ │ ├── ExperienceSection.tsx # Work experience
│ │ │ ├── HeroSection.tsx # Landing hero section
│ │ │ ├── ProjectsSection.tsx # Portfolio projects
│ │ │ └── SkillsSection.tsx # Skills and technologies
│ │ ├── globals.css # Global styles and CSS variables
│ │ ├── layout.tsx # Root layout with providers
│ │ └── page.tsx # Main page component
├── package.json # Dependencies and scripts
├── tailwind.config.js # Tailwind CSS configuration
└── tsconfig.json # TypeScript configuration
│ ├── images/ # Images for the website
│ └── fonts/ # Font files (if any)
├── src/
│ ├── app/ # Next.js App Router
│ │ ├── components/ # Reusable components
│ │ ├── context/ # Context providers
│ │ ├── hooks/ # Custom hooks
│ │ ├── sections/ # Page sections
│ │ ├── styles/ # CSS styles
│ │ ├── utils/ # Utility functions
│ │ ├── types/ # TypeScript types
│ │ ├── layout.tsx # Root layout
│ │ ├── page.tsx # Home page
│ │ └── globals.css # Global styles
├── tailwind.config.js # Tailwind configuration
├── package.json # Dependencies and scripts
└── README.md # Project documentation
To update the content of the portfolio:
src/app/sections/
public/images/
directoryThe website uses Tailwind CSS for styling. You can customize the theme by editing:
tailwind.config.js
- For theme colors, fonts, and extensionssrc/app/globals.css
- For global styles and CSS variablesThe easiest way to deploy this portfolio is to use the Vercel Platform from the creators of Next.js.
next export
command to generate static filesThis project is open source and available under the MIT License.