54 lines
982 B
Markdown
54 lines
982 B
Markdown
# Bay Area Affiliates
|
|
|
|
Ein modernes React-Projekt erstellt mit Vite, TypeScript und Framer Motion.
|
|
|
|
## Voraussetzungen
|
|
|
|
- Node.js (Version 18 oder höher empfohlen)
|
|
- npm (wird mit Node.js installiert)
|
|
|
|
## Installation
|
|
|
|
Klone das Repository und installiere die Abhängigkeiten:
|
|
|
|
```bash
|
|
npm install
|
|
```
|
|
|
|
## Entwicklung
|
|
|
|
Starte den lokalen Entwicklungsserver:
|
|
|
|
```bash
|
|
npm run dev
|
|
```
|
|
|
|
Die Anwendung ist dann unter `http://localhost:5173` erreichbar.
|
|
|
|
## Build
|
|
|
|
Erstelle eine optimierte Version für die Produktion:
|
|
|
|
```bash
|
|
npm run build
|
|
```
|
|
|
|
Die erzeugten Dateien befinden sich im `dist`-Verzeichnis.
|
|
|
|
## Vorschau
|
|
|
|
Teste den Produktions-Build lokal:
|
|
|
|
```bash
|
|
npm run preview
|
|
```
|
|
|
|
## Technologien
|
|
|
|
- [React](https://react.dev/)
|
|
- [Vite](https://vitejs.dev/)
|
|
- [TypeScript](https://www.typescriptlang.org/)
|
|
- [Framer Motion](https://www.framer.com/motion/) (Animationen)
|
|
- [GSAP](https://gsap.com/) (Animationen)
|
|
- [Lenis](https://github.com/studio-freight/lenis) (Smooth Scrolling)
|