A single-page portfolio website for N3xt, a digital studio building premium browser extensions.
- Framework: Next.js 14+ (App Router)
- Styling: Tailwind CSS
- Icons: Lucide React
- Animation: Framer Motion
- Fonts: Inter (sans-serif) & JetBrains Mono (monospace)
- Install dependencies:
npm install- Run the development server:
npm run dev- Open http://localhost:3000 in your browser.
Cinematic Obsidian:
- Background: Deep black (#050608) with radial gradients (#1c1e29)
- Accents: Electric Blue (#3E92FF) and Violet (#A364FF)
- Glassmorphism: Translucent cards with backdrop blur
- Typography: High-contrast white text with tight letter-spacing
Edit the extensions array in app/page.tsx to add new products:
{
id: 'your-extension',
name: 'Your Extension',
description: 'Description here',
tags: ['Tag1', 'Tag2'],
featured: false, // Set to true for large featured card
status: 'available' | 'coming-soon',
logo: '🎨', // Emoji or icon
}npm run build
npm start