Files
c8d7e602-e938-4601-b09c-a20…/src/app/page.tsx
2026-04-17 02:52:53 +00:00

124 lines
6.4 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import LegalSection from '@/components/legal/LegalSection';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import SplitAbout from '@/components/sections/about/SplitAbout';
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="medium"
sizing="mediumLarge"
background="none"
cardStyle="soft-shadow"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "About", id: "/about" },
]}
brandName="من و سلوی"
button={{ text: "Order Now", href: "https://wa.me/923185436728" }}
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardCarousel
background={{ variant: "radial-gradient" }}
title="Home-Cooked Perfection"
description="Premium home food restaurant delivering authentic flavors to your doorstep in Wah Cantt."
buttons={[{ text: "View Menu", href: "/menu" }]}
mediaItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/spicies-chicken-wooden-tabletop_23-2147716938.jpg", imageAlt: "delicious chicken momos food photography" },
{ imageSrc: "http://img.b2bpic.net/free-photo/assorted-dumplings-platter-with-dipping-sauce_84443-85763.jpg", imageAlt: "beef momos with sauces food photography" },
{ imageSrc: "http://img.b2bpic.net/free-photo/crispy-bread-garlic_1339-527.jpg", imageAlt: "cheesy garlic bread macro photo" },
{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-truffle-pizza-garnished-with-olive-oil_141793-2067.jpg", imageAlt: "gourmet pizza restaurant style" },
{ imageSrc: "http://img.b2bpic.net/free-photo/delicious-handmade-pecan-pie-ready-be-served_23-2148461067.jpg", imageAlt: "grilled chicken bbq char marks" },
{ imageSrc: "http://img.b2bpic.net/free-photo/dish-prepared-with-grated-cheese-tomatoes_141793-591.jpg", imageAlt: "creamy white sauce pasta food photography" },
]}
/>
</div>
<div id="featured" data-section="featured">
<ProductCardFour
textboxLayout="split-actions"
gridVariant="one-large-left-three-stacked-right"
useInvertedBackground={false}
animationType="slide-up"
products={[
{ id: "1", name: "Beef Momos", price: "Ask on WhatsApp", variant: "Specialty", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-breakfast-meal-assortment_23-2148833913.jpg" },
{ id: "2", name: "Cheesy Garlic Bread", price: "Ask on WhatsApp", variant: "Bakery", imageSrc: "http://img.b2bpic.net/free-photo/fresh-bread-wooden-background_169016-3148.jpg" },
{ id: "3", name: "Classic Pizza", price: "Ask on WhatsApp", variant: "Fast Food", imageSrc: "http://img.b2bpic.net/free-photo/vegetables-grey-wooden-surface_176420-6812.jpg" },
{ id: "4", name: "Bakery Cake", price: "Ask on WhatsApp", variant: "Fresh", imageSrc: "http://img.b2bpic.net/free-photo/piece-cake-plate-cup-closeup-table-cafe_169016-25270.jpg" },
{ id: "5", name: "Chicken BBQ", price: "Ask on WhatsApp", variant: "Grilled", imageSrc: "http://img.b2bpic.net/free-photo/meat-plate_23-2147716910.jpg" },
{ id: "6", name: "Creamy Pasta", price: "Ask on WhatsApp", variant: "Italian", imageSrc: "http://img.b2bpic.net/free-photo/mushrooms-sour-cream-with-herbs-tomato_141793-711.jpg" },
]}
title="Our Featured Items"
description="Hand-picked favorites prepared with pure love and premium ingredients."
/>
</div>
<div id="about-snippet" data-section="about-snippet">
<SplitAbout
textboxLayout="split"
useInvertedBackground={false}
title="Home-Cooked Perfection"
description="Located in Wah Cantt, we specialize in authentic Chinese, Continental, and Desi cuisine. Every dish is prepared fresh in a hygienic home kitchen."
bulletPoints={[
{ title: "Fresh Ingredients", description: "No preservatives, no shortcuts." },
{ title: "Free Delivery", description: "Within Wah Cantt area." },
{ title: "Hygiene First", description: "Prepared in a hygienic home kitchen." },
]}
imageSrc="http://img.b2bpic.net/free-photo/delicious-meal-with-sambal-arrangement_23-2149076072.jpg"
imageAlt="delicious chicken momos food photography"
mediaAnimation="slide-up"
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="page"
title="Terms and Conditions"
sections={[]}
/>
</div>
<div id="contact-home" data-section="contact-home">
<ContactCTA
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Get in Touch"
title="Ready to Order?"
description="WhatsApp us now for price and availability inquiries! +923185436728"
buttons={[{ text: "WhatsApp Us", href: "https://wa.me/923185436728" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }] },
{ items: [{ label: "About Us", href: "/about" }, { label: "WhatsApp Order", href: "https://wa.me/923185436728" }] },
]}
logoText="من و سلوی"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}