feat: site Le Moulin des Rives — design Tailwind + config Docker
This commit is contained in:
+26
-14
@@ -1,17 +1,29 @@
|
||||
---
|
||||
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 Location from '../components/Location.astro';
|
||||
import Contact from '../components/Contact.astro';
|
||||
import Footer from '../components/Footer.astro';
|
||||
---
|
||||
|
||||
---
|
||||
<MainLayout>
|
||||
<Navbar />
|
||||
<Hero />
|
||||
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<meta name="generator" content={Astro.generator} />
|
||||
<title>Astro</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Astro</h1>
|
||||
</body>
|
||||
</html>
|
||||
<main>
|
||||
<About />
|
||||
<Features />
|
||||
<Gallery />
|
||||
<Food />
|
||||
<Location />
|
||||
<Contact />
|
||||
</main>
|
||||
|
||||
<Footer />
|
||||
</MainLayout>
|
||||
Reference in New Issue
Block a user