feat: site Le Moulin des Rives — design Tailwind + config Docker

This commit is contained in:
2026-05-28 23:46:36 +02:00
parent 87186db304
commit 1411e6816d
19 changed files with 1060 additions and 19 deletions
+26 -14
View File
@@ -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>