From d495d438e9d63ef606ff2fef91b9758be496596d Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 01:39:17 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 51 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 42ccc91..47a3abf 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,21 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; +import "./styles/variables.css"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "FLORA SHOP - Fleuriste Marrakech | Livraison Fleurs Même Jour", description: "Fleuriste professionnel à Marrakech. Bouquets élégants, livraison rapide le jour même. ⭐ 4.9/5. Commandez par téléphone ou WhatsApp maintenant.", keywords: "fleuriste Marrakech, livraison fleurs, bouquets, flower delivery, same-day delivery", metadataBase: new URL("https://flora-shop-marrakech.com"), - alternates: { - canonical: "https://flora-shop-marrakech.com"}, - openGraph: { - title: "FLORA SHOP - Fleuriste Marrakech", description: "Découvrez nos magnifiques bouquets avec livraison le jour même à Marrakech.", url: "https://flora-shop-marrakech.com", siteName: "FLORA SHOP", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/exotic-rustic-bunch-flowers-mixed-colors_114579-1969.jpg", alt: "Beautiful flowers from FLORA SHOP"}, - ], - }, - twitter: { - card: "summary_large_image", title: "FLORA SHOP - Fleuriste Marrakech", description: "Livraison fleurs express le jour même à Marrakech", images: ["http://img.b2bpic.net/free-photo/exotic-rustic-bunch-flowers-mixed-colors_114579-1969.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "FLORA SHOP - Fleuriste Marrakech", description: "Livraison de fleurs le jour même à Marrakech. Des bouquets élégants et frais."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}