diff --git a/src/app/order/page.tsx b/src/app/order/page.tsx new file mode 100644 index 0000000..754e5cc --- /dev/null +++ b/src/app/order/page.tsx @@ -0,0 +1,171 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { ShoppingBag, Truck, Utensils, Home, Mail, Phone, CalendarCheck, Facebook, Instagram, MapPin, Soup, Star, Twitter } from "lucide-react"; + +export default function OrderPage() { + return ( + + + + + + + + + + + + + + + + + + + + + + ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 337cb19..0f5fa0a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,19 +33,19 @@ export default function LandingPage() { @@ -79,7 +79,7 @@ export default function LandingPage() { { imageSrc: "http://img.b2bpic.net/free-photo/front-view-women-sitting-table_23-2150062650.jpg", imageAlt: "Gourmet Australian cheese platter"}, { - imageSrc: "http://img.b2bpic.net/free-photo/delicious-grilled-kebab-pink-plate_114579-69599.jpg", imageAlt: "Perfectly cooked steak with elegant plating"}, + imageSrc: "http://img.b2bpic.net/free-photo/delicious-grilled-kebab-pink-plate_114579-69599.jpg", imageAlt: "Delicious grilled kebab"}, { imageSrc: "http://img.b2bpic.net/free-photo/creamy-seafood-soup-with-mussels-shrimp-small-octopus_140725-1326.jpg", imageAlt: "Innovative crab sausages dish"}, ]} @@ -88,9 +88,9 @@ export default function LandingPage() { tagAnimation="slide-up" buttons={[ { - text: "Lihat Menu", href: "#menu"}, + text: "Lihat Menu", href: "/order"}, { - text: "Reservasi Sekarang", href: "#contact"}, + text: "Reservasi Sekarang", href: "/#contact"}, ]} buttonAnimation="slide-up" avatars={[ @@ -181,8 +181,8 @@ export default function LandingPage() { { id: "premium-steaks", name: "Premium Steaks", price: "IDR 400.000", imageSrc: "http://img.b2bpic.net/free-photo/seared-steak-with-roasted-vegetables_23-2151942406.jpg", imageAlt: "Premium Steaks"}, ]} - title="Sajian Istimewa dari Dapur Kami" - description="Dari hidangan klasik hingga kreasi modern, setiap menu kami diracik dengan passion dan presisi. Jelajahi pilihan menu kami yang elegan." + title="Pilihan Menu Favorit Kami" + description="Dari hidangan klasik hingga kreasi modern, setiap menu kami diracik dengan passion dan presisi. Jelajahi pilihan menu favorit kami." /> diff --git a/src/app/reservations/page.tsx b/src/app/reservations/page.tsx new file mode 100644 index 0000000..642a9e4 --- /dev/null +++ b/src/app/reservations/page.tsx @@ -0,0 +1,74 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import ContactForm from "@/components/form/ContactForm"; // Using ContactForm for booking +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Award, CalendarCheck, Facebook, Instagram, Twitter } from "lucide-react"; // Import necessary icons + +export default function ReservationsPage() { + const navItems = [ + { name: "Home", id: "/" }, // Link home to root path + { name: "Menu", id: "#menu" }, + { name: "Chef Kami", id: "#chef" }, + { name: "Ulasan", id: "#ulasan" }, + { name: "Loyalty Program", id: "#loyalty" }, + { name: "Kontak", id: "#contact" } + ]; + + const navbarButton = { + text: "Reservasi", href: "/reservations" + }; + + return ( + + + + + + + + console.log("Reservation request for:", email)} // Placeholder action + centered={true} + /> + + + + + + ); +} \ No newline at end of file