5 Commits

Author SHA1 Message Date
ca512a0895 Update src/app/page.tsx 2026-03-06 13:35:20 +00:00
2afc6d5559 Merge version_2 into main
Merge version_2 into main
2026-03-06 13:29:37 +00:00
3a8e7f4e28 Update src/app/page.tsx 2026-03-06 13:29:33 +00:00
90c96cddcc Update src/app/layout.tsx 2026-03-06 13:29:33 +00:00
7f5fb535ab Merge version_1 into main
Merge version_1 into main
2026-03-06 13:27:43 +00:00
2 changed files with 10 additions and 48 deletions

View File

@@ -1,57 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Raleway } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const raleway = Raleway({
variable: "--font-raleway", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Domaine des Vignes - Vins de Bourgueil | Saint-Nicolas-de-Bourgueil", description: "Découvrez nos vins rouges et rosés d'exception de Saint-Nicolas-de-Bourgueil. Depuis 1947, nous produisons des Cabernet Franc authentiques et complexes.", keywords: "vin bourgueil, cabernet franc, saint-nicolas-de-bourgueil, vin rouge loire, vins français, terroir, domaine viticole", metadataBase: new URL("https://domainedesvignes.fr"),
alternates: {
canonical: "https://domainedesvignes.fr"},
openGraph: {
title: "Domaine des Vignes - Vins de Bourgueil", description: "Explorez nos vins d'exception du terroir de Bourgueil, produits avec passion depuis trois générations", url: "https://domainedesvignes.fr", siteName: "Domaine des Vignes", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/red-grapes-vineyard-cinematic-style_23-2151599778.jpg", alt: "vignobles bourgueil coucher soleil"},
],
},
twitter: {
card: "summary_large_image", title: "Domaine des Vignes - Vins de Bourgueil", description: "Vins rouges et rosés d'exception de Saint-Nicolas-de-Bourgueil", images: ["http://img.b2bpic.net/free-photo/top-view-wine-bottles-with-wooden-background_23-2148243152.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Domaine des Vignes - Grands Crus de Saint-Nicolas-de-Bourgueil", description: "Découvrez les vins d'exception de Domaine des Vignes, producteur de Cabernet Franc depuis 1947 en Loire."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
>
<Tag />
{children}
<html lang="fr">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -48,7 +48,7 @@ export default function LandingPage() {
tagIcon={Grape}
tagAnimation="slide-up"
buttons={[
{ text: "Découvrir nos Vins", href: "#wines" },
{ text: "Commander Maintenant", href: "#wines" },
{ text: "En Savoir Plus", href: "#about" },
]}
buttonAnimation="slide-up"
@@ -91,13 +91,13 @@ export default function LandingPage() {
id: "1", name: "Bourgueil Rouge Traditionnel 2019", price: "18,50€", variant: "Rouge Fruit Rouge", imageSrc: "http://img.b2bpic.net/free-photo/top-view-bottle-champagne-with-present-dark-color-drink-alcohol-photo-new-year-party_140725-93499.jpg", imageAlt: "Bourgueil Rouge Traditionnel 2019", isFavorited: false,
},
{
id: "2", name: "Cabernet Franc Prestige 2018", price: "24,00€", variant: "Rouge Premium Structure Tannique", imageSrc: "http://img.b2bpic.net/free-photo/woman-holds-glass-wine-before-bunch-grape-lying-black-plate_1304-2851.jpg", imageAlt: "Cabernet Franc Prestige 2018", isFavorited: false,
id: "2", name: "Cabernet Franc Prestige 2018", price: "24,00€", variant: "Rouge Premium Millésime Limité | Structure Tannique", imageSrc: "http://img.b2bpic.net/free-photo/woman-holds-glass-wine-before-bunch-grape-lying-black-plate_1304-2851.jpg", imageAlt: "Cabernet Franc Prestige 2018", isFavorited: false,
},
{
id: "3", name: "Bourgueil Rosé d'Été 2022", price: "12,50€", variant: "Rosé Frais et Fruité", imageSrc: "http://img.b2bpic.net/free-photo/delicious-cocktail-tropical-fruits_23-2147795405.jpg", imageAlt: "Bourgueil Rosé d'Été 2022", isFavorited: false,
},
{
id: "4", name: "Vieilles Vignes 2017", price: "32,00€", variant: "Rouge Millésimé Expression Terroir", imageSrc: "http://img.b2bpic.net/free-photo/close-up-wine-bottle-glass_23-2148673781.jpg", imageAlt: "Vieilles Vignes 2017", isFavorited: false,
id: "4", name: "Vieilles Vignes 2017", price: "32,00€", variant: "Rouge Millésimé Édition Exclusive | Expression Terroir", imageSrc: "http://img.b2bpic.net/free-photo/close-up-wine-bottle-glass_23-2148673781.jpg", imageAlt: "Vieilles Vignes 2017", isFavorited: false,
},
]}
gridVariant="uniform-all-items-equal"