Update src/app/layout.tsx

This commit is contained in:
2026-03-06 07:34:30 +00:00
parent 706ea61b07
commit ebd3bea7ab

View File

@@ -7,47 +7,31 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
variable: "--font-inter", subsets: ["latin"],
});
const figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
variable: "--font-figtree", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Grandma's House of Pancakes - Best Breakfast in Elkhart, IN",
description: "Homestyle pancakes, eggs benedict, and hearty breakfast in Elkhart, IN. Open at 5:30 AM. 4.5★ from 1,852 reviews. Call for reservations.",
keywords: "breakfast Elkhart, pancakes near me, best breakfast Indiana, eggs benedict Elkhart, family restaurant",
robots: {
title: "Grandma's House of Pancakes - Best Breakfast in Elkhart, IN", description: "Homestyle pancakes, eggs benedict, and hearty breakfast in Elkhart, IN. Open at 5:30 AM. 4.5★ from 1,852 reviews. Call for reservations.", keywords: "breakfast Elkhart, pancakes near me, best breakfast Indiana, eggs benedict Elkhart, family restaurant", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Grandma's House of Pancakes - Best Breakfast in Elkhart, IN",
description: "Homestyle pancakes, hearty breakfasts, and friendly service every morning. Open at 5:30 AM.",
type: "website",
siteName: "Grandma's House of Pancakes",
url: "https://grandmashouse.com",
images: [
title: "Grandma's House of Pancakes - Best Breakfast in Elkhart, IN", description: "Homestyle pancakes, hearty breakfasts, and friendly service every morning. Open at 5:30 AM.", type: "website", siteName: "Grandma's House of Pancakes", url: "https://grandmashouse.com", images: [
{
url: "http://img.b2bpic.net/free-photo/vegan-tofu-pancakes-with-fruits-white-plate_181624-22208.jpg",
alt: "Delicious homemade pancakes",
},
url: "http://img.b2bpic.net/free-photo/vegan-tofu-pancakes-with-fruits-white-plate_181624-22208.jpg", alt: "Delicious homemade pancakes"},
],
},
twitter: {
card: "summary_large_image",
title: "Grandma's House of Pancakes - Best Breakfast in Elkhart",
description: "Homestyle pancakes and hearty breakfast. 4.5★ from 1,852 customers. Open 5:30 AM.",
images: ["http://img.b2bpic.net/free-photo/vegan-tofu-pancakes-with-fruits-white-plate_181624-22208.jpg"],
card: "summary_large_image", title: "Grandma's House of Pancakes - Best Breakfast in Elkhart", description: "Homestyle pancakes and hearty breakfast. 4.5★ from 1,852 customers. Open 5:30 AM.", images: ["http://img.b2bpic.net/free-photo/vegan-tofu-pancakes-with-fruits-white-plate_181624-22208.jpg"],
},
};
@@ -1435,4 +1419,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}