gitextract_oiw4y92l/ ├── .editorconfig ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode/ │ ├── css_custom_tailwind.json │ ├── extensions.json │ ├── launch.json │ └── settings.json ├── CONTRIBUTING.md ├── README.md ├── astro.config.mjs ├── package.json ├── public/ │ ├── events/ │ │ └── event-lolalolita.ics │ └── googlee0d1fc8a4713db25.html ├── pull_request_template.md ├── src/ │ ├── components/ │ │ ├── BackToTop.astro │ │ ├── BubbleBackground.astro │ │ ├── DotBackground.astro │ │ ├── Header.astro │ │ ├── HeaderLink.astro │ │ ├── LeafletMap.astro │ │ ├── Marquee.astro │ │ ├── Sponsor.astro │ │ ├── SponsorsBar.astro │ │ ├── StarryBackground.astro │ │ └── WaveSeparator.astro │ ├── consts/ │ │ ├── galleryImages.ts │ │ ├── geoJSONData.ts │ │ └── map-styles.js │ ├── layouts/ │ │ └── Layout.astro │ ├── pages/ │ │ ├── 404.astro │ │ └── index.astro │ ├── sections/ │ │ ├── ComoLlegar.astro │ │ ├── FAQ.astro │ │ ├── Footer.astro │ │ ├── Gallery.astro │ │ ├── Hero.astro │ │ ├── Info.astro │ │ ├── Map.astro │ │ ├── Rides.astro │ │ └── Tickets.astro │ └── styles/ │ └── global.css ├── tailwind.config.js └── tsconfig.json