3 Commits

Author SHA1 Message Date
9e757a931a Update src/app/page.tsx 2026-03-09 05:31:11 +00:00
eed5e66229 Update src/app/layout.tsx 2026-03-09 05:31:11 +00:00
09f339bfe8 Merge version_1 into main
Merge version_1 into main
2026-03-09 05:29:37 +00:00
2 changed files with 15 additions and 39 deletions

View File

@@ -1,53 +1,27 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const geist = Geist({
variable: "--font-halant", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", subsets: ["latin"], variable: "--font-geist-mono", subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Bebek Protol MasBim | Authentic Indonesian Duck in Ponorogo", description: "Experience legendary Bebek Protol at MasBim in Ponorogo. Tender, spicy duck dishes crafted with traditional Javanese recipes. Reserve your table now.", keywords: "Indonesian duck, bebek protol, Ponorogo restaurant, Javanese cuisine, authentic duck dishes, sambal, nasi bebek", openGraph: { title: "Bebek Protol MasBim - Authentic Indonesian Duck Restaurant", description: "Experience authentic Bebek Protol at MasBim restaurant in Ponorogo. Tender, shredded duck infused with aromatic Javanese spices."};
title: "Bebek Protol MasBim | Authentic Indonesian Duck Restaurant", description: "Discover mouth-watering Bebek Protol—tender, shredded duck with aromatic spices. A culinary gem in Ponorogo.", type: "website", siteName: "Bebek Protol MasBim", images: [
{
url: "http://img.b2bpic.net/free-photo/top-view-azerbaijani-dish-bozbash-lamb-stew-with-chickpeas_140725-5086.jpg", alt: "Signature Bebek Protol dish"},
],
},
twitter: {
card: "summary_large_image", title: "Bebek Protol MasBim | Authentic Indonesian Duck", description: "Experience legendary duck dishes in Ponorogo. Authentic flavors, warm hospitality, unforgettable meals.", images: ["http://img.b2bpic.net/free-photo/top-view-azerbaijani-dish-bozbash-lamb-stew-with-chickpeas_140725-5086.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
@@ -1416,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -94,6 +94,9 @@ export default function LandingPage() {
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
buttons={[
{ text: "Reserve Table", href: "#cta" }
]}
ariaLabel="Menu highlights section" ariaLabel="Menu highlights section"
/> />
</div> </div>