Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1b94641a5c | |||
| dc833b6425 | |||
| f6e1cf7b20 |
@@ -1,17 +1,11 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Geist, Geist_Mono } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "@/styles/globals.css";
|
||||||
|
|
||||||
const geist = Geist({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-geist-sans", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const geistMono = Geist_Mono({
|
|
||||||
variable: "--font-geist-mono", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
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", description: "Experience authentic Indonesian duck cuisine in Ponorogo"};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
@@ -20,7 +14,7 @@ export default function RootLayout({
|
|||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
<body className={inter.className}>
|
||||||
{children}
|
{children}
|
||||||
|
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -34,7 +34,8 @@ export default function LandingPage() {
|
|||||||
{ name: "Location", id: "location" },
|
{ name: "Location", id: "location" },
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Reserve Now", href: "#contact"}}
|
text: "Reserve Now", href: "#contact"
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -45,7 +46,8 @@ export default function LandingPage() {
|
|||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/top-view-azerbaijani-dish-bozbash-lamb-stew-with-chickpeas_140725-5086.jpg", alt: "Signature Bebek Protol dish"},
|
src: "http://img.b2bpic.net/free-photo/top-view-azerbaijani-dish-bozbash-lamb-stew-with-chickpeas_140725-5086.jpg", alt: "Signature Bebek Protol dish"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
avatarText="Trusted by locals since opening"
|
avatarText="Trusted by locals since opening"
|
||||||
buttons={[
|
buttons={[
|
||||||
@@ -84,19 +86,19 @@ export default function LandingPage() {
|
|||||||
tagIcon={UtensilsCrossed}
|
tagIcon={UtensilsCrossed}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "bebek-goreng", name: "Bebek Goreng", price: "Rp 65,000", variant: "Crispy, golden-fried duck served with sambal", imageSrc: "http://img.b2bpic.net/free-photo/chicken-breast-with-fresh-salad_1258-291.jpg", imageAlt: "Crispy Bebek Goreng"},
|
id: "bebek-goreng", name: "Bebek Goreng", price: "Rp 65,000", variant: "Crispy, golden-fried duck served with sambal", imageSrc: "http://img.b2bpic.net/free-photo/chicken-breast-with-fresh-salad_1258-291.jpg", imageAlt: "Crispy Bebek Goreng"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "nasi-bebek", name: "Nasi Bebek", price: "Rp 45,000", variant: "Fragrant rice with tender duck meat and herbs", imageSrc: "http://img.b2bpic.net/free-photo/rice-garnish-with-meat-balls-spices_114579-2463.jpg", imageAlt: "Nasi Bebek with rice"},
|
id: "nasi-bebek", name: "Nasi Bebek", price: "Rp 45,000", variant: "Fragrant rice with tender duck meat and herbs", imageSrc: "http://img.b2bpic.net/free-photo/rice-garnish-with-meat-balls-spices_114579-2463.jpg", imageAlt: "Nasi Bebek with rice"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "sambal-extra", name: "Extra Spicy Sambal", price: "Rp 8,000", variant: "Traditional chili paste for true heat lovers", imageSrc: "http://img.b2bpic.net/free-photo/delicious-sambal-dish-arrangement_23-2149076157.jpg", imageAlt: "Extra hot sambal side"},
|
id: "sambal-extra", name: "Extra Spicy Sambal", price: "Rp 8,000", variant: "Traditional chili paste for true heat lovers", imageSrc: "http://img.b2bpic.net/free-photo/delicious-sambal-dish-arrangement_23-2149076157.jpg", imageAlt: "Extra hot sambal side"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
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>
|
||||||
@@ -110,11 +112,13 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
negativeCard={{
|
negativeCard={{
|
||||||
items: [
|
items: [
|
||||||
"Mass-produced ingredients", "Rushed preparation", "Artificial flavors"],
|
"Mass-produced ingredients", "Rushed preparation", "Artificial flavors"
|
||||||
|
],
|
||||||
}}
|
}}
|
||||||
positiveCard={{
|
positiveCard={{
|
||||||
items: [
|
items: [
|
||||||
"100% local, fresh duck", "Slow-cooked to perfection", "Traditional Javanese recipes", "Authentic spice blends"],
|
"100% local, fresh duck", "Slow-cooked to perfection", "Traditional Javanese recipes", "Authentic spice blends"
|
||||||
|
],
|
||||||
}}
|
}}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
ariaLabel="About our restaurant section"
|
ariaLabel="About our restaurant section"
|
||||||
@@ -129,7 +133,8 @@ export default function LandingPage() {
|
|||||||
description="Jl. Janoko No.42b, Ponorogo, East Java — A warm welcome awaits you at our traditional restaurant where every dish tells a story of passion and heritage."
|
description="Jl. Janoko No.42b, Ponorogo, East Java — A warm welcome awaits you at our traditional restaurant where every dish tells a story of passion and heritage."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Get Directions", href: "https://maps.google.com/?q=Jl.+Janoko+No.42b,+Ponorogo"},
|
text: "Get Directions", href: "https://maps.google.com/?q=Jl.+Janoko+No.42b,+Ponorogo"
|
||||||
|
},
|
||||||
{ text: "Call Now", href: "tel:+62" },
|
{ text: "Call Now", href: "tel:+62" },
|
||||||
]}
|
]}
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
@@ -145,7 +150,7 @@ export default function LandingPage() {
|
|||||||
title="Reserve Your Culinary Experience Today"
|
title="Reserve Your Culinary Experience Today"
|
||||||
description="Join us for an unforgettable meal. Every visit is a journey through authentic Javanese flavors and warm hospitality. Your table is waiting."
|
description="Join us for an unforgettable meal. Every visit is a journey through authentic Javanese flavors and warm hospitality. Your table is waiting."
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Reserve a Table", href: "#" },
|
{ text: "Reserve Now – Walk-ins Welcome", href: "#" },
|
||||||
{ text: "See Full Menu", href: "#menu" },
|
{ text: "See Full Menu", href: "#menu" },
|
||||||
]}
|
]}
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
|
|||||||
Reference in New Issue
Block a user