Skip to content

Repository files navigation

falsisdev/website

Personal portfolio website built with modern web technologies — statically generated, zero-config deployment.

Tech Stack

Technology Purpose
Astro Framework — routing, static site generation, zero-JS by default
Svelte 5 Interactive UI components with runes ($props, $state, $effect)
Tailwind CSS v4 Utility-first styling via Vite plugin

Architecture

The site follows Astro's Islands Architecture. Pages are rendered as static HTML at build time. Interactive sections are hydrated selectively using client:* directives — only the JavaScript that's needed gets shipped to the browser.

src/
├── components/        # Svelte interactive islands
│   ├── Hero.svelte          # Animated hero section
│   ├── ProjectCard.svelte   # Project cards grid
│   └── SkillBar.svelte      # Scroll-triggered skill bars
├── layouts/
│   └── Layout.astro         # Base HTML layout (dark theme)
├── pages/
│   └── index.astro          # Homepage — assembles all components
└── styles/
    └── global.css           # Tailwind v4 theme configuration

For a detailed architectural overview, see ARCHITECTURE.md.

Getting Started

Prerequisites: Node.js 18+

# Install dependencies
npm install

# Start development server
npm run dev

The dev server runs at http://localhost:4321/website.

Build & Deploy

# Generate static output
npm run build

# Preview the production build locally
npm run preview

Static files are output to dist/ and deployed to GitHub Pages.

License

MIT

About

Personal portfolio website built with modern web technologies — statically generated, zero-config deployment.

Resources

Stars

12 stars

Watchers

1 watching

Forks

Used by

Contributors

Languages