A modern, interactive personal portfolio website showcasing the profile of MD REDUANUL HOQUE - a Computer Science student, developer, and educator based in Dhaka, Bangladesh.
Visit the live portfolio: https://portfolio-md-reduanul-hoque.web.app/
portfolio/
├── public/
│ ├── Formal.jpg # Profile image
│ └── md_reduanul_hoque_resume.pdf
├── src/
│ ├── app/
│ │ ├── globals.css # Global styles
│ │ ├── layout.tsx # Root layout
│ │ └── page.tsx # Main page
│ └── components/
│ ├── footer.tsx # Footer component
│ ├── navbar.tsx # Navigation bar
│ ├── theme-provider.tsx # Theme context provider
│ ├── theme-toggle.tsx # Dark/Light mode toggle
│ └── sections/
│ ├── about.tsx # About & education section
│ ├── classes.tsx # YouTube classes section
│ ├── contact.tsx # Contact & social links
│ ├── hero.tsx # Hero/landing section
│ ├── projects.tsx # Projects showcase
│ └── skills.tsx # Skills display
├── firebase.json # Firebase configuration
├── next.config.ts # Next.js configuration
├── package.json # Dependencies
└── tsconfig.json # TypeScript configuration
# Clone the repository
git clone <repository-url>
cd portfolio
# Install dependencies
npm install
# or
yarn install
# or
pnpm install
# or
bun install
# Run the development server
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Open http://localhost:3000 in your browser to view the project.
# Build for production
npm run build
# or
yarn build
# or
pnpm build
# or
bun build
npm run start
# or
yarn start
# or
pnpm start
# or
bun start
This project is for personal portfolio purposes. All rights reserved to MD REDUANUL HOQUE.
Built with ❤️ using Next.js and Tailwind CSS