diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a02c995..356faa4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,60 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Mulish } 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 { Mulish } 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 mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "Mia's Cafe - Breakfast & Lunch in Madison, AL", + description: "Mia's Cafe in Madison, AL serves fresh breakfast, Southern comfort lunch, and genuine hospitality. Open 7 AM–2 PM daily. Order online or visit us.", + keywords: "breakfast Madison AL, cafe Madison Alabama, Southern food, comfort food, local cafe, fried catfish, brunch Madison", + metadataBase: new URL("https://miascafe.local"), + alternates: { + canonical: "https://miascafe.local", + }, + openGraph: { + title: "Mia's Cafe - Madison's Cozy Favorite for Breakfast & Lunch", + description: "Fresh breakfast and hearty Southern lunch with genuine hospitality. Open daily 7 AM–2 PM at 30694 Hwy 72 W, Madison, AL.", + url: "https://miascafe.local", + siteName: "Mia's Cafe", + images: [ + { + url: "http://img.b2bpic.net/free-photo/portrait-young-young-woman-sitting-modern-cafe_171337-17121.jpg", + alt: "Warm interior of Mia's Cafe with cozy seating", + }, + ], + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Mia's Cafe - Breakfast & Lunch Madison, AL", + description: "Fresh breakfast and Southern comfort lunch. Come hungry, leave happy.", + images: ["http://img.b2bpic.net/free-photo/portrait-young-young-woman-sitting-modern-cafe_171337-17121.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -31,7 +64,9 @@ export default function RootLayout({ return ( - + {children}