diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1bfe997..5357e94 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Archivo } 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 { Archivo } 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 archivo = Archivo({ variable: "--font-archivo", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "CookBook Pro - Learn Cooking: Recipes & Techniques for Students", + description: "Master pasta, pizza, spaghetti and more with professional cooking recipes. Resources for culinary students and home cooks.", + keywords: "cooking recipes, pasta, pizza, spaghetti, culinary education, cooking techniques, culinary school", + metadataBase: new URL("https://cookbookpro.com"), + alternates: { + canonical: "https://cookbookpro.com", + }, + openGraph: { + title: "CookBook Pro - Learn Cooking Today", + description: "Master essential cooking techniques with professional recipes designed for students and home cooks.", + type: "website", + siteName: "CookBook Pro", + url: "https://cookbookpro.com", + images: [ + { + url: "http://img.b2bpic.net/free-photo/front-view-female-cook-rolling-out-dough-dark-job-raw-dough-pie-oven-hotcake-bakery-egg_179666-43928.jpg", + alt: "Professional chef preparing fresh ingredients", + width: 1200, + height: 630, + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "CookBook Pro - Learn Cooking", + description: "Master cooking with professional recipes and techniques.", + images: [ + "http://img.b2bpic.net/free-photo/front-view-female-cook-rolling-out-dough-dark-job-raw-dough-pie-oven-hotcake-bakery-egg_179666-43928.jpg", + ], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}