8 Commits

Author SHA1 Message Date
5380ca3bfa Update src/app/page.tsx 2026-03-06 13:18:17 +00:00
b3140ba237 Update src/app/layout.tsx 2026-03-06 13:18:16 +00:00
92716f0fa2 Merge version_2 into main
Merge version_2 into main
2026-03-06 13:12:58 +00:00
7a567c93e7 Update src/app/page.tsx 2026-03-06 13:12:54 +00:00
3ca729fd44 Update src/app/layout.tsx 2026-03-06 13:12:53 +00:00
0371e81be4 Merge version_1 into main
Merge version_1 into main
2026-03-06 12:19:32 +00:00
310e852c3f Merge version_1 into main
Merge version_1 into main
2026-03-06 12:18:47 +00:00
1fda25543e Merge version_1 into main
Merge version_1 into main
2026-03-06 12:17:41 +00:00
2 changed files with 8 additions and 47 deletions

View File

@@ -1,58 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Roboto } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const roboto = Roboto({
variable: "--font-roboto", subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Burgers, Bait & Beer - Marina Waterfront Dining in San Diego", description: "Casual waterfront burgers, hot dogs, tacos, and cold beer at Embarcadero Marina Park South. Fresh food, great vibes, perfect views.", keywords: "burgers, beer, waterfront dining, San Diego marina, casual food, hot dogs, tacos", metadataBase: new URL("https://www.burgersbaairbeer.com"),
alternates: {
canonical: "https://www.burgersbaairbeer.com"},
openGraph: {
title: "Burgers, Bait & Beer - Waterfront Marina Dining", description: "Grab fresh burgers, sizzling hot dogs, cold beer, and craft cocktails with stunning marina views.", url: "https://www.burgersbaairbeer.com", siteName: "Burgers, Bait & Beer", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/front-view-delicious-burger-arrangement_23-2148868201.jpg", alt: "Fresh gourmet burger at Burgers, Bait & Beer"},
],
},
twitter: {
card: "summary_large_image", title: "Burgers, Bait & Beer - Marina Waterfront Dining", description: "Fresh burgers, cold beer, and waterfront vibes at Embarcadero Marina Park South.", images: ["http://img.b2bpic.net/free-photo/front-view-delicious-burger-arrangement_23-2148868201.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Burgers, Bait & Beer", description: "Waterfront burgers, cold beer, and good times at Embarcadero Marina Park South"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -49,7 +49,7 @@ export default function LandingPage() {
tagAnimation="slide-up"
background={{ variant: "plain" }}
buttons={[
{ text: "View Menu", href: "#menu" },
{ text: "Order Food Online", href: "#menu" },
{ text: "Call Now", href: "tel:+16196725578" },
]}
buttonAnimation="slide-up"