From c4e9ebb32cb3994eec3493353b0c0873fc0a29d0 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 02:28:38 +0000 Subject: [PATCH] Switch to version 1: modified src/app/layout.tsx --- src/app/layout.tsx | 50 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 43 insertions(+), 7 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ad27a3d..42ccc91 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,22 +1,57 @@ import type { Metadata } from "next"; +import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import "./styles/variables.css"; +import { Manrope } from "next/font/google"; import "./globals.css"; +import { ServiceWrapper } from "@/components/ServiceWrapper"; +import Tag from "@/tag/Tag"; -const inter = Inter({ subsets: ["latin"] }); +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"], +}); export const metadata: Metadata = { - title: "FLORA SHOP - Fleuriste Marrakech", description: "Livraison de fleurs le jour même à Marrakech. Des bouquets élégants et frais." + 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, + }, }; export default function RootLayout({ children, -}: { +}: Readonly<{ children: React.ReactNode; -}) { +}>) { return ( - - {children} + + + + + {children} +