diff --git a/src/app/page.tsx b/src/app/page.tsx index b6389dd..8f6e20d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,15 +3,15 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import AboutMetric from '@/components/sections/about/AboutMetric'; -import ContactCenter from '@/components/sections/contact/ContactCenter'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FeatureBento from '@/components/sections/feature/FeatureBento'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; -import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; -import { Clock, Flame, Leaf, Star, ThumbsUp, Zap } from "lucide-react"; +import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; +import { Clock, Flame, Leaf, Star, ThumbsUp, Zap, Mail, Phone, MapPin } from "lucide-react"; export default function LandingPage() { return ( @@ -31,14 +31,11 @@ export default function LandingPage() { @@ -76,15 +61,9 @@ export default function LandingPage() { useInvertedBackground={false} title="Quality You Can Trust" metrics={[ - { - icon: Star, - label: "Rating", value: "4.9/5"}, - { - icon: Clock, - label: "Fast Service", value: "Yes"}, - { - icon: ThumbsUp, - label: "Satisfied Customers", value: "220+"}, + { icon: Star, label: "Rating", value: "4.9/5" }, + { icon: Clock, label: "Fast Service", value: "Yes" }, + { icon: ThumbsUp, label: "Satisfied Customers", value: "220+" }, ]} metricsAnimation="slide-up" /> @@ -96,18 +75,12 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={true} features={[ - { - title: "Premium BBQ", description: "Authentic, smoky flavors cooked to perfection.", bentoComponent: "reveal-icon", icon: Flame - }, - { - title: "Healthy Choices", description: "Fresh, high-quality ingredients you'll love.", bentoComponent: "reveal-icon", icon: Leaf - }, - { - title: "Fast Service", description: "Your food arrives hot and delicious, every time.", bentoComponent: "reveal-icon", icon: Zap - }, + { title: "Premium BBQ", description: "Authentic, smoky flavors.", bentoComponent: "reveal-icon", icon: Flame }, + { title: "Healthy Choices", description: "Fresh, high-quality ingredients.", bentoComponent: "reveal-icon", icon: Leaf }, + { title: "Fast Service", description: "Hot and delicious delivery.", bentoComponent: "reveal-icon", icon: Zap }, ]} title="Fresh & Flavorful Menu" - description="Explore our wide range of BBQ, fast food, and healthy meal options." + description="Explore our BBQ, fast food, and healthy meal options." /> @@ -118,42 +91,25 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={false} products={[ - { - id: "1", name: "BBQ Platter", price: "PKR 1200", imageSrc: "http://img.b2bpic.net/free-photo/top-view-fresh-tomatoes-with-seasonings-olives-dark-background_179666-17439.jpg?_wi=1"}, - { - id: "2", name: "Healthy Wrap", price: "PKR 500", imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-fruity-cakes-with-cookies-cup-tea-dark_140725-104711.jpg"}, - { - id: "3", name: "Grilled Chicken", price: "PKR 850", imageSrc: "http://img.b2bpic.net/free-photo/top-view-mix-steaks-with-potatoes-vegetable-salad-sauce_141793-4089.jpg"}, - { - id: "4", name: "Combo Deal", price: "PKR 1500", imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-kebab-slate-with-cloth_23-2148685482.jpg"}, - { - id: "5", name: "Garden Salad", price: "PKR 450", imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-potatoes-tasty-french-fries-with-greens-seasonings-dark-desk_140725-115276.jpg"}, - { - id: "6", name: "Fresh Drink", price: "PKR 200", imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-cutlets-with-onion-rings-grey-background-dish-meat-meal-cuisine_140725-47070.jpg"}, + { id: "1", name: "BBQ Platter", price: "PKR 1200", imageSrc: "http://img.b2bpic.net/free-photo/top-view-fresh-tomatoes-with-seasonings-olives-dark-background_179666-17439.jpg?_wi=1" }, + { id: "2", name: "Healthy Wrap", price: "PKR 500", imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-fruity-cakes-with-cookies-cup-tea-dark_140725-104711.jpg" }, ]} title="Chef Specials" - description="Our most popular items that customers keep coming back for." + description="Most popular items." />
-
@@ -161,49 +117,42 @@ export default function LandingPage() {
-