Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-06 13:50:59 +00:00
2 changed files with 18 additions and 36 deletions

View File

@@ -1,49 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Guilty Bite - Premium Specialty Coffee & Pastries", description: "Experience authentic specialty coffee and artisanal pastries at Guilty Bite Coffee Collective. Award-winning baristas, ethically sourced beans, and cozy atmosphere.", keywords: "specialty coffee, café, espresso, pastries, coffee shop, latte art, cold brew", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Guilty Bite - Premium Specialty Coffee", description: "Indulge in premium specialty coffee and fresh pastries at Guilty Bite Coffee Collective", siteName: "Guilty Bite", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/boy-eating-restaurant_23-2148172673.jpg", alt: "Guilty Bite Coffee Shop"},
],
},
twitter: {
card: "summary_large_image", title: "Guilty Bite - Premium Specialty Coffee", description: "Experience authentic specialty coffee and artisanal pastries", images: ["http://img.b2bpic.net/free-photo/boy-eating-restaurant_23-2148172673.jpg"],
},
};
title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -100,6 +100,10 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[
{ text: "View Full Menu", href: "#contact" }
]}
buttonAnimation="slide-up"
/>
</div>
@@ -169,4 +173,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}