My personal developer portfolio built with React and TypeScript. Features a component-driven architecture, optimized performance, and modern UI design principles.
- 🎨 Modern and responsive UI design
- 🌙 Dark mode support
- ⚡ Optimized performance
- 📱 Fully responsive
- 🎯 Component-driven architecture
- 🎬 YouTube videos showcase section
The portfolio includes a YouTube videos showcase section that displays 4 specific videos from your channel.
-
Get YouTube API Key:
- Go to Google Cloud Console
- Create a new project or select an existing one
- Enable "YouTube Data API v3"
- Go to "APIs & Services" → "Credentials"
- Click "Create Credentials" → "API Key"
- Copy your API key
-
Add API Key to Project:
- Create a
.envfile in the project root (if it doesn't exist) - Add your API key:
VITE_YOUTUBE_API_KEY=your_api_key_here - Restart your development server
- Create a
-
Configure Video IDs:
- Open
src/hooks/useYouTubeVideos.ts - Update the
SPECIFIC_VIDEO_IDSarray with your 4 video IDs:const SPECIFIC_VIDEO_IDS: string[] = [ 'video_id_1', 'video_id_2', 'video_id_3', 'video_id_4', ];
- To get video ID: Copy from YouTube URL after
v=(e.g.,youtube.com/watch?v=VIDEO_ID_HERE)
- Open
If your video URL is: https://www.youtube.com/watch?v=xPsRtJd9uSU
Then your video ID is: xPsRtJd9uSU
# Install dependencies
npm install
# Start development server
npm run dev
# Build for production
npm run build- React 19
- TypeScript
- Vite
- Tailwind CSS
- Framer Motion
- Lucide React Icons
ISC