Landing page completa recriada em SvelteKit com animações GSAP.
sveltekit-landing/
├── src/
│ ├── lib/ # Componentes reutilizáveis
│ │ ├── About.svelte
│ │ ├── Footer.svelte
│ │ ├── Header.svelte
│ │ ├── Logo.svelte
│ │ ├── Main.svelte
│ │ ├── ParallaxText.svelte
│ │ └── Projects.svelte
│ ├── routes/ # Rotas do SvelteKit
│ │ ├── +layout.svelte
│ │ └── +page.svelte
│ ├── app.css # Estilos globais
│ └── app.html # Template HTML
├── static/ # Arquivos estáticos
│ ├── manifest.json
│ └── favicon.png
└── package.json
npm install
npm run devAcesse em http://localhost:5002
npm run build
npm run previewdocker build -t sveltekit-landing .
docker run -p 5002:5002 sveltekit-landingdocker-compose up -dAcesse em http://localhost:5002
- SvelteKit 2.0
- Svelte 5
- GSAP 3 (ScrollTrigger, ScrollToPlugin)
- Tailwind CSS 4
- TypeScript