192 lines
9.1 KiB
TypeScript
192 lines
9.1 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
|
import FooterCard from '@/components/sections/footer/FooterCard';
|
|
import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel';
|
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
|
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
|
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
|
import TextAbout from '@/components/sections/about/TextAbout';
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="text-stagger"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="soft"
|
|
contentWidth="compact"
|
|
sizing="mediumSizeLargeTitles"
|
|
background="noise"
|
|
cardStyle="soft-shadow"
|
|
primaryButtonStyle="gradient"
|
|
secondaryButtonStyle="glass"
|
|
headingFontWeight="medium"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingInline
|
|
navItems={[
|
|
{
|
|
name: "Home", id: "hero"},
|
|
{
|
|
name: "About", id: "about"},
|
|
{
|
|
name: "Menu", id: "menu"},
|
|
{
|
|
name: "Reviews", id: "reviews"},
|
|
{
|
|
name: "Contact", id: "contact"},
|
|
]}
|
|
brandName="Butcher Steak"
|
|
button={{
|
|
text: "Book Table", href: "#contact"}}
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroSplitDoubleCarousel
|
|
background={{
|
|
variant: "gradient-bars"}}
|
|
title="Best Steak Experience in Palembang"
|
|
description="Premium Australian rib eye, rich flavors, and unforgettable dining moments."
|
|
leftCarouselItems={[
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-dipping-steak-piece-into-sour-sauce_140725-5004.jpg", imageAlt: "gourmet steakhouse interior elegant"},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/gourmet-steak-with-berries-cherry-tomatoes-dark-plate_84443-82593.jpg", imageAlt: "australian rib eye steak medium rare"},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/pasta-dish-restaurant-table_7939-2464.jpg", imageAlt: "rich creamy spaghetti carbonara"},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/top-view-pizza-toppings-arrangement_23-2148601630.jpg", imageAlt: "fresh delicious pizza gourmet"},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/top-view-pasta-with-meet-glass-wine-round-plate_176474-3412.jpg", imageAlt: "creamy mushroom risotto gourmet"},
|
|
]}
|
|
rightCarouselItems={[
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/professional-chef-preparing-food-kitchen_23-2149728030.jpg", imageAlt: "Professional chef preparing food in the kitchen"},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/grilled-beef-steak-served-with-potato-dish-mushroom-sauce_140725-5831.jpg", imageAlt: "Grilled beef steak served with potato dish and mushroom sauce"},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/seared-steak-with-orange-herbs_23-2151942418.jpg", imageAlt: "Seared steak with orange and herbs"},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/beef-steak-served-with-rice-mushroom-tomato_140725-1491.jpg", imageAlt: "Beef steak served with rice, mushroom and tomato"},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/beef-steak-served-with-yellow-mashed-puree-vegetables_140725-1492.jpg", imageAlt: "Beef steak served with yellow mashed puree and vegetables"},
|
|
]}
|
|
buttons={[
|
|
{
|
|
text: "Book a Table", href: "#contact"},
|
|
{
|
|
text: "Order Now", href: "#menu"},
|
|
]}
|
|
avatars={[
|
|
{
|
|
src: "http://img.b2bpic.net/free-photo/red-gurza-tomato-sesame-top-view_141793-4513.jpg", alt: "Red gurza tomato sesame top view"},
|
|
{
|
|
src: "http://img.b2bpic.net/free-photo/beef-steak-slices-garnished-with-herbs-sauce-served-with-grilled-vegetables_140725-226.jpg", alt: "Beef steak slices garnished with herbs and sauce, served with grilled vegetables"},
|
|
{
|
|
src: "http://img.b2bpic.net/free-photo/various-dessert-glass-white-wine_140725-4306.jpg", alt: "Various dessert and glass of white wine"},
|
|
{
|
|
src: "http://img.b2bpic.net/free-photo/side-view-lamb-ribs-kebab-with-grilled-tomato-onions-with-herbs_141793-4984.jpg", alt: "Side view lamb ribs kebab with grilled tomato and onions with herbs"},
|
|
{
|
|
src: "http://img.b2bpic.net/free-photo/grilled-chicken-ketchup-barberry-parsley-onion-side-view_141793-3124.jpg", alt: "Grilled chicken ketchup barberry parsley onion side view"},
|
|
]}
|
|
marqueeItems={[
|
|
{
|
|
type: "text", text: "Premium Dining"},
|
|
{
|
|
type: "text", text: "Authentic Flavors"},
|
|
{
|
|
type: "text", text: "Australian Beef"},
|
|
{
|
|
type: "text", text: "Cozy Atmosphere"},
|
|
{
|
|
type: "text", text: "Best in Palembang"},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<TextAbout
|
|
useInvertedBackground={false}
|
|
title="A Cozy Culinary Destination in Palembang"
|
|
buttons={[
|
|
{
|
|
text: "Learn More"},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="menu" data-section="menu">
|
|
<ProductCardThree
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
gridVariant="uniform-all-items-equal"
|
|
useInvertedBackground={false}
|
|
products={[
|
|
{
|
|
id: "1", name: "Australian Rib Eye", price: "IDR 350k", imageSrc: "http://img.b2bpic.net/free-photo/juicy-steak-fork-presentation_23-2151950798.jpg"},
|
|
{
|
|
id: "2", name: "Spaghetti Carbonara", price: "IDR 120k", imageSrc: "http://img.b2bpic.net/free-photo/spaghetti-carbonara_74190-34.jpg"},
|
|
{
|
|
id: "3", name: "Artisan Pizza", price: "IDR 140k", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pizza-with-tomatoes-cutter_23-2148753761.jpg"},
|
|
{
|
|
id: "4", name: "Mushroom Risotto", price: "IDR 130k", imageSrc: "http://img.b2bpic.net/free-photo/fried-eggplant-with-tomatoes-sesame-seeds-plate_140725-9191.jpg"},
|
|
{
|
|
id: "5", name: "Chocolate Cake", price: "IDR 85k", imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-tasty-healthy-round-cake-plate_23-2148161581.jpg"},
|
|
{
|
|
id: "6", name: "Signature Steak", price: "IDR 400k", imageSrc: "http://img.b2bpic.net/free-photo/woman-cutting-steak-piece-served-with-sour-sauce_140725-5273.jpg"},
|
|
]}
|
|
title="Menu Highlights"
|
|
description="Exquisite dishes crafted for the perfect dining experience."
|
|
/>
|
|
</div>
|
|
|
|
<div id="reviews" data-section="reviews">
|
|
<TestimonialCardTwelve
|
|
useInvertedBackground={false}
|
|
testimonials={[
|
|
{
|
|
id: "1", name: "Customer 1", imageSrc: "http://img.b2bpic.net/free-photo/people-cheering-with-wine-glasses-luxurious-restaurant_23-2150517447.jpg"},
|
|
{
|
|
id: "2", name: "Customer 2", imageSrc: "http://img.b2bpic.net/free-photo/people-enjoying-mexican-barbecue_23-2151000257.jpg"},
|
|
{
|
|
id: "3", name: "Customer 3", imageSrc: "http://img.b2bpic.net/free-photo/grilled-beef-steak-served-with-roasted-baby-potatoes_140725-5832.jpg"},
|
|
{
|
|
id: "4", name: "Customer 4", imageSrc: "http://img.b2bpic.net/free-photo/closeup-woman-using-smart-phone-while-eating-cake-cafe-focus-is-foreground_637285-2128.jpg"},
|
|
{
|
|
id: "5", name: "Customer 5", imageSrc: "http://img.b2bpic.net/free-photo/beef-steak-mini-grill-pan-served-with-fried-potatoes-fresh-salad_140725-541.jpg"},
|
|
]}
|
|
cardTitle="What Our Guests Say"
|
|
cardTag="Reviews"
|
|
cardAnimation="blur-reveal"
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactSplit
|
|
useInvertedBackground={false}
|
|
background={{
|
|
variant: "plain"}}
|
|
tag="Reservations"
|
|
title="Visit Butcher Steak"
|
|
description="Book in advance for the best experience. Located in Palembang. Hours: 11 AM - 10 PM."
|
|
imageSrc="http://img.b2bpic.net/free-photo/company-professional-planning-strategy-working-laptop-office-project-manager-using-website-employee-analyzing-marketing-research-data-worker-reading-report-workplace-desk_482257-64537.jpg"
|
|
mediaAnimation="slide-up"
|
|
buttonText="WhatsApp Reservation"
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterCard
|
|
logoText="Butcher Steak"
|
|
copyrightText="© 2025 Butcher Steak Palembang"
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|