diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d25a5a2..36e5aa5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Inter_Tight } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Boucherie Cleunay - Viandes Fraîches à Rennes", description: "Boucherie artisanale à Rennes. Viandes fraîches sélectionnées, accueil chaleureux, produits de qualité. Découvrez nos bœufs, agneaux et charcuterie maison. 4,6★ sur Google.", keywords: "boucherie Rennes, viande fraîche Rennes, boucherie Cleunay, artisan boucherie, viande qualité, charcuterie Rennes", metadataBase: new URL("https://boucherie-cleunay.fr"), - alternates: { - canonical: "https://boucherie-cleunay.fr" - }, - openGraph: { - title: "Boucherie Cleunay - Rennes", description: "Viandes fraîches et produits sélectionnés avec soin. Boucherie artisanale depuis 20 ans au cœur de Rennes.", url: "https://boucherie-cleunay.fr", siteName: "Boucherie Cleunay", type: "website" - }, - twitter: { - card: "summary", title: "Boucherie Cleunay - Rennes", description: "Viandes fraîches et produits sélectionnés avec soin. Boucherie artisanale depuis 20 ans au cœur de Rennes." - }, - robots: { - index: true, - follow: true - } -}; + title: "Boucherie Cleunay - Viandes Fraîches à Rennes", description: "Boucherie artisanale au cœur de Rennes. Viandes fraîches, produits sélectionnés et accueil chaleureux depuis plus de 20 ans."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -