https://github.com/johnzanussi/nataliasdad.com
A website and presentation I built for my daughter’s second-grade class’s Career Week.
https://github.com/johnzanussi/nataliasdad.com
astro demo presentation revealjs typescript
Last synced: 20 days ago
JSON representation
A website and presentation I built for my daughter’s second-grade class’s Career Week.
- Host: GitHub
- URL: https://github.com/johnzanussi/nataliasdad.com
- Owner: johnzanussi
- License: mit
- Created: 2025-03-03T18:19:02.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-03-18T08:08:04.000Z (3 months ago)
- Last Synced: 2026-03-18T23:55:51.557Z (3 months ago)
- Topics: astro, demo, presentation, revealjs, typescript
- Language: Astro
- Homepage: https://nataliasdadcom.vercel.app/
- Size: 15.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NataliasDad.com
A website and presentation I built for my daughter’s second-grade class’s Career Week.
* [nataliasdad.com](https://nataliasdad.vercel.app/)
* [nataliasdad.com/presentation](https://nataliasdad.vercel.app/presentation)

## 📚 Libraries
* [Astro](https://astro.build/)
* [Tailwind](https://tailwindcss.com/)
* [reveal.js](https://revealjs.com/)
## 🚀 Project Structure
Inside of your Astro project, you'll see the following folders and files:
```text
/
├── public/
│ └── favicon.ico
├── src/
│ ├── assets/
│ ├── components/
│ │ └── Tooltip.astro
│ ├── layouts/
│ │ └── Layout.astro
│ └── pages/
│ └── index.astro
│ └── presentation.astro
│ └── scripts/
│ └── confetti.ts
│ └── styles/
│ └── index.css
└── package.json
```
## 🧞 Commands
All commands are run from the root of the project, from a terminal:
| Command | Action |
| :------------------------ | :----------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts local dev server at `localhost:4321` |
| `npm run build` | Build your production site to `./dist/` |
| `npm run preview` | Preview your build locally, before deploying |
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
| `npm run astro -- --help` | Get help using the Astro CLI |