diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7eeade6..e7b165e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Poppins } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const poppins = Poppins({ variable: "--font-poppins", @@ -20,6 +24,39 @@ const poppins = Poppins({ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); +export const metadata: Metadata = { + title: "Delicieux Patisserie - Premium Artisan Cakes & Desserts", + description: "Discover exquisite handcrafted cakes, cupcakes, and custom desserts. Perfect for weddings, birthdays, and celebrations. Premium ingredients, elegant designs.", + keywords: "cake shop, custom cakes, wedding cakes, cupcakes, desserts, patisserie, artisan bakery", + metadataBase: new URL("https://www.delicieux-patisserie.com"), + alternates: { + canonical: "https://www.delicieux-patisserie.com", + }, + openGraph: { + title: "Delicieux Patisserie - Premium Artisan Cakes", + description: "Discover exquisite handcrafted cakes perfect for your celebrations.", + url: "https://www.delicieux-patisserie.com", + siteName: "Delicieux Patisserie", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/view-beautifully-ornate-weeding-cake_23-2151379525.jpg", + alt: "Premium tiered cake showcase", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Delicieux Patisserie - Premium Artisan Cakes", + description: "Handcrafted cakes for every celebration", + images: ["http://img.b2bpic.net/free-photo/view-beautifully-ornate-weeding-cake_23-2151379525.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +65,9 @@ export default function RootLayout({ return ( - + {children}