31 lines
751 B
Plaintext
31 lines
751 B
Plaintext
---
|
|
import MainLayout from '../layouts/MainLayout.astro';
|
|
|
|
import Navbar from '../components/Navbar.astro';
|
|
import Hero from '../components/Hero.astro';
|
|
import About from '../components/About.astro';
|
|
import Features from '../components/Features.astro';
|
|
import Gallery from '../components/Gallery.astro';
|
|
import Food from '../components/Food.astro';
|
|
import Pricing from '../components/Pricing.astro';
|
|
import Location from '../components/Location.astro';
|
|
import Contact from '../components/Contact.astro';
|
|
import Footer from '../components/Footer.astro';
|
|
---
|
|
|
|
<MainLayout>
|
|
<Navbar />
|
|
<Hero />
|
|
|
|
<main>
|
|
<About />
|
|
<Features />
|
|
<Gallery />
|
|
<Food />
|
|
<Pricing />
|
|
<Location />
|
|
<Contact />
|
|
</main>
|
|
|
|
<Footer />
|
|
</MainLayout> |