|
|
|
|
@@ -1,53 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Public_Sans } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
const publicSans = Public_Sans({
|
|
|
|
|
variable: "--font-public-sans", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Bros Burgers - Premium Flame-Grilled Burgers", description: "Experience the best flame-grilled burgers in town at Bros Burgers. Fresh ingredients, premium beef, and fast service make us your neighborhood burger destination.", keywords: "burgers, flame-grilled, restaurant, fast food, premium burgers, beef burgers, burger delivery", metadataBase: new URL("https://brosburgers.com"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://brosburgers.com"
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Bros Burgers - Premium Flame-Grilled Burgers", description: "Experience the best flame-grilled burgers in town. Fresh ingredients and premium beef burgers made to order.", siteName: "Bros Burgers", type: "website", url: "https://brosburgers.com", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/grilled-cheeseburger-sesame-bun-with-fries-generated-by-ai_188544-23207.jpg", alt: "Bros Burgers Signature Burger"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Bros Burgers - Premium Flame-Grilled Burgers", description: "Best burgers in town, made fresh to order with premium ingredients.", images: ["http://img.b2bpic.net/free-photo/grilled-cheeseburger-sesame-bun-with-fries-generated-by-ai_188544-23207.jpg"]
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
title: "Bros Burgers - Premium Flame-Grilled Burgers", description: "Experience the best flame-grilled burgers in town. Fresh ingredients, perfect sear, unforgettable taste."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1415,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|