Understanding Astro routing, pages structure, and API routes in the Velaria project
Pages in Astro are files in the src/pages/ directory that automatically become routes in your application. Velaria has three main pages and two API endpoints.
src/pages/index.astroThe landing page that displays all main sections of the site.
---import Layout from "../layouts/Layout.astro";import Header from "../components/Header.astro";import Intro from "../components/Intro.astro";import Producto from "../components/Producto.astro";import Catalogo from "../components/Catalogo.astro";import Contactanos from "../components/Contactanos.astro";import Usos from "../components/Usos.astro";import Navbar from "../components/Navbar.astro";import ScrollToTop from "../components/ScrollToTop.astro";import Fragancias from "../components/Fragancias.astro";---<Layout title="VELARIA | Inicio"> <Header title="ILUMINA TUS MOMENTOS MÁS ESPECIALES" subtitle="VELAS AROMÁTICAS DECORATIVAS ARTESANALES" /> <Intro /> <Producto /> <Catalogo /> <Fragancias /> <Usos /> <Contactanos /> <ScrollToTop/></Layout>
Sections (in order):
Header - Hero section with title “ILUMINA TUS MOMENTOS MÁS ESPECIALES”
Intro - Brand introduction
Producto - Main product showcase
Catalogo - Product catalog
Fragancias - Available fragrances
Usos - Product uses and benefits
Contactanos - Contact form
ScrollToTop - Back-to-top button
The homepage is a single-page design where all sections are stacked vertically for a smooth scrolling experience.
src/pages/nosotros.astroThe “About Us” page explaining Velaria’s story and mission.
---import Layout from "../layouts/Layout.astro";import Header from "../components/Header.astro";import { Image } from "astro:assets";import ScrollToTop from "../components/ScrollToTop.astro";---<Layout title="VELARIA | Nosotros"> <Header title="SOBRE NOSOTROS" subtitle=""/> <div class="flex flex-col justify-center items-center"> <div class="w-[80%] lg:w-[50%] h-auto"> <div class="p-10 text-justify mt-5"> <Image src={'https://qzvv9kr0sph7bvqi.public.blob.vercel-storage.com/velas2.jpg'} width={200} height={200} alt="..." class="..." /> <p>En VELARIA creemos que una vela no es solo un objeto decorativo...</p> <br> <p>Nos inspira la idea de transformar lo cotidiano en algo especial...</p> <br> <p>Más que velas, buscamos crear experiencias sensoriales...</p> </div> </div> </div> <ScrollToTop/></Layout>
Features:
Centered content layout
Responsive width (80% mobile, 50% desktop)
Remote image from Vercel Blob Storage
Text-justified paragraphs
Scroll to top button
Content breakdown
Header - “SOBRE NOSOTROS” title
Image - Featured candle product image
Mission statement - Three paragraphs explaining Velaria’s philosophy: