Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-04 19:08:42 +00:00
2 changed files with 8 additions and 42 deletions

View File

@@ -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>
);
}

View File

@@ -201,13 +201,13 @@ export default function LandingPage() {
<ContactCenter
tag="Get In Touch"
title="Order Online or Visit Us Today"
description="Join thousands of satisfied customers. Place your order online for quick pickup, or reserve a table for dine-in. We're here to make your burger experience unforgettable."
description="Place your order online now for quick pickup or reserve a table for dine-in. We're here to make your burger experience unforgettable."
tagIcon={Phone}
tagAnimation="slide-up"
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
inputPlaceholder="Enter your email"
buttonText="Get Updates"
buttonText="Order Now"
termsText="We respect your privacy. Unsubscribe at any time."
/>
</div>