Coding
PromptBeginner5 minmarkdown
Nano Banana Pro
Agent skill for nano-banana-pro
6
A professional single-page portfolio website for Joel Summers, Senior Audio Artist at Codemasters (EA).
Sign in to like and favorite skills
A professional single-page portfolio website for Joel Summers, Senior Audio Artist at Codemasters (EA).
npm run dev # Start dev server at http://localhost:4321 npm run build # Build for production to dist/ npm run preview # Preview production build
src/ ├── components/ │ ├── Header.astro # Fixed navigation with mobile menu │ ├── Hero.astro # Full-screen hero with waveform animation │ ├── About.astro # Bio section with photo and skills │ ├── Projects.astro # AAA game projects grid │ ├── ProjectCard.astro # Video thumbnail card with modal │ ├── Credits.astro # Two-column work history timeline │ ├── Testimonials.astro # Client testimonials (placeholder) │ ├── Contact.astro # Email and social links │ └── Footer.astro # Copyright and back-to-top ├── data/ │ ├── projects.json # Game project metadata │ └── credits.json # Sound Designer & Recordist credits ├── layouts/ │ └── Layout.astro # Base layout with SEO/Open Graph ├── pages/ │ └── index.astro # Main page combining all sections └── styles/ └── global.css # Design system and animations public/ └── images/ ├── game_thumbnails/ # Project thumbnails ├── hero/ # Background and logo ├── icons/ # IMDB, MobyGames icons └── profile/ # Joel's headshot
#0a0a0f (near black)#141419 (elevated elements)#e63946 (red for CTAs)#4361ee (blue for links)#f8f9fa (primary), #9ca3af (muted)src/components/Contact.astro line 3src/components/Testimonials.astroConfigured for Cloudflare Pages via
wrangler.toml. The build output directory is dist/.
To deploy:
npm run builddistwebsite_notes.txt