diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 37ca10b..db78f90 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -99,35 +99,35 @@ export default function AboutPage() { id: "1", name: "Classic Pancakes", price: "$12.99", - imageSrc: "http://img.b2bpic.net/free-photo/tasty-breakfast-delicious-pancakes-covered-with-chocolate-cherries_8353-7297.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/tasty-breakfast-delicious-pancakes-covered-with-chocolate-cherries_8353-7297.jpg?_wi=3", imageAlt: "Fluffy homemade pancakes", }, { id: "2", name: "Fish & Chips", price: "$16.99", - imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-fried-chicken-with-sauces-french-fries_23-2148646673.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-fried-chicken-with-sauces-french-fries_23-2148646673.jpg?_wi=3", imageAlt: "Crispy fish and chips", }, { id: "3", name: "Chicken Fried Steak", price: "$18.99", - imageSrc: "http://img.b2bpic.net/free-photo/crispy-breaded-chicken-patty-topped-with-herbs-black-bowl_140725-5792.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/crispy-breaded-chicken-patty-topped-with-herbs-black-bowl_140725-5792.jpg?_wi=3", imageAlt: "Homestyle chicken fried steak", }, { id: "4", name: "Pastrami Burger", price: "$15.99", - imageSrc: "http://img.b2bpic.net/free-photo/chef-preparing-burger-with-meat-cutletcheese-tomatoes-lettuce-onion_140725-8118.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/chef-preparing-burger-with-meat-cutletcheese-tomatoes-lettuce-onion_140725-8118.jpg?_wi=3", imageAlt: "Gourmet pastrami burger", }, { id: "5", name: "French Toast", price: "$13.99", - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-delicious-croissant-with-jam-plate-fresh-orange-juice-cup-coffee_181624-49565.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-delicious-croissant-with-jam-plate-fresh-orange-juice-cup-coffee_181624-49565.jpg?_wi=3", imageAlt: "Eggy homemade french toast", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 42fa6ab..78bc4bd 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 { DM_Sans } 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 { DM_Sans } 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 dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Mountain Oaks Cafe - Homestyle Cooking in Oakhurst, CA", + description: "Award-winning homestyle restaurant in Oakhurst serving breakfast, lunch & dinner. 4.8★ rated with 750+ reviews. Fresh ingredients, genuine hospitality.", + keywords: "restaurant Oakhurst, homestyle cafe, breakfast lunch dinner, mountain hospitality, local restaurant California", + metadataBase: new URL("https://mountainoakscafe.com"), + alternates: { + canonical: "https://mountainoakscafe.com", + }, + openGraph: { + title: "Mountain Oaks Cafe - Homestyle Cooking", + description: "Oakhurst's favorite restaurant for comfort food and genuine hospitality. Call (559) 683-1120.", + url: "https://mountainoakscafe.com", + siteName: "Mountain Oaks Cafe", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/ceramic-plate-square-cut-vegetables-herbs-salad_114579-1889.jpg", + alt: "Mountain Oaks Cafe - Featured Homestyle Meal", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Mountain Oaks Cafe - Homestyle Cooking", + description: "Award-winning homestyle restaurant in Oakhurst. Call (559) 683-1120 for reservations.", + images: ["http://img.b2bpic.net/free-photo/ceramic-plate-square-cut-vegetables-herbs-salad_114579-1889.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}