Overview
Drakk3 Portfolio is a modern single-page portfolio application showcasing projects, skills, and professional experience. Built with cutting-edge web technologies, it demonstrates a clean architecture that balances static content with interactive React components.Get Started
Set up your development environment and run the portfolio locally
Architecture
Understand the Astro + React islands architecture
Components
Explore the component library and structure
Styling
Learn about the Tailwind v4 theme system
Key Features
Astro 6 with React 19 Islands
Astro 6 with React 19 Islands
Combines the performance of static-site generation with the interactivity of React where needed. Most components are Astro (.astro) for zero JavaScript, while interactive sections like the contact form use React islands with
client:load.Tailwind CSS v4 Native Configuration
Tailwind CSS v4 Native Configuration
Uses Tailwind v4’s new
@theme directive in CSS instead of traditional PostCSS configuration. Theme tokens are defined directly in src/styles/global.css using CSS custom properties.shadcn/ui Component Library
shadcn/ui Component Library
Integrates shadcn/ui primitives for accessible, customizable UI components. Uses the
cn() utility from src/lib/utils.ts to merge Tailwind classes cleanly.Dark-Only Minimalist Design
Dark-Only Minimalist Design
Features a carefully crafted dark color scheme with zinc tones and white accents. All theme tokens are defined in both Tailwind v4 format and HSL variables for maximum compatibility.
Type-Safe Data Structure
Type-Safe Data Structure
Project and skills data are defined in TypeScript modules (
src/data/projects.ts and src/data/skills.ts) with full type definitions for status, category, and other fields.Single-Page Portfolio Layout
Single-Page Portfolio Layout
Organized as a single scrollable page with sections: Navbar → Hero → About → Skills → Projects → Contact → Footer. Each section is a separate component for maintainability.
Technology Stack
- Core Framework
- Styling
- Utilities
- Astro 6 - Static site generator with islands architecture
- React 19 - Interactive UI components
- TypeScript - Type-safe development
Project Structure
The portfolio follows a clean component-based architecture:Design Philosophy
This portfolio demonstrates a content-first, performance-first approach. By using Astro components for static sections and React only where interactivity is required, the site delivers minimal JavaScript to the browser while maintaining a rich user experience.
Next Steps
Quick Start
Follow the quickstart guide to clone the repository and run the development server
Explore Architecture
Read the architecture overview to understand how Astro and React work together
Customize Components
Browse the component documentation to learn how to modify and extend components
Adapt the Theme
Study the theme system to customize colors, typography, and animations