Update src/app/page.tsx
This commit is contained in:
203
src/app/page.tsx
203
src/app/page.tsx
@@ -2,13 +2,9 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
|
||||
import ProductCartItem from '@/components/ecommerce/cart/ProductCartItem';
|
||||
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
|
||||
import { Coffee, Leaf, MapPin, Users } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
@@ -29,26 +25,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Cafeteria Wall"
|
||||
/>
|
||||
@@ -57,183 +38,33 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardTestimonial
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Where Every Bite Feels Like Home"
|
||||
description="Cafeteria Wall brings you the perfect blend of cozy vibes, fresh ingredients, and community spirit on Hisar-Rohtak Road."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Rahul S.",
|
||||
handle: "@rahul_meham",
|
||||
testimonial: "The best cafe in Meham! The vibe is so peaceful.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-asian-woman-working-outdoor-cafe-sitting-with-laptop-bench-drinking_1258-199274.jpg",
|
||||
},
|
||||
{
|
||||
name: "Priya D.",
|
||||
handle: "@priya_d",
|
||||
testimonial: "Great food and hygiene. Love the coffee here.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/exploring-websites-inspiration-me_329181-2914.jpg",
|
||||
},
|
||||
{
|
||||
name: "Amit K.",
|
||||
handle: "@amit_k",
|
||||
testimonial: "A perfect spot for study breaks and hangouts.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/boy-with-curly-hairs-optique-glasses-tasting-biscuit-looking-satisfied_114579-13466.jpg",
|
||||
},
|
||||
{
|
||||
name: "Sonia R.",
|
||||
handle: "@sonia_r",
|
||||
testimonial: "Delicious snacks and very polite service.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-friendly-waitress-coffee-shop-barista-giving-out-takeaway-order-cappuccino-paper-cup-f_1258-134432.jpg",
|
||||
},
|
||||
{
|
||||
name: "Vikram V.",
|
||||
handle: "@vikram_v",
|
||||
testimonial: "Near PNB bank, very convenient. Highly recommended!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-people-antique-store_23-2149640700.jpg",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Order Now",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
text: "Visit Us",
|
||||
href: "/contact",
|
||||
},
|
||||
{ name: "Rahul S.", handle: "@rahul_meham", testimonial: "The best cafe in Meham! The vibe is so peaceful.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-asian-woman-working-outdoor-cafe-sitting-with-laptop-bench-drinking_1258-199274.jpg" },
|
||||
{ name: "Priya D.", handle: "@priya_d", testimonial: "Great food and hygiene. Love the coffee here.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/exploring-websites-inspiration-me_329181-2914.jpg" },
|
||||
{ name: "Amit K.", handle: "@amit_k", testimonial: "A perfect spot for study breaks and hangouts.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/boy-with-curly-hairs-optique-glasses-tasting-biscuit-looking-satisfied_114579-13466.jpg" },
|
||||
{ name: "Sonia R.", handle: "@sonia_r", testimonial: "Delicious snacks and very polite service.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-friendly-waitress-coffee-shop-barista-giving-out-takeaway-order-cappuccino-paper-cup-f_1258-134432.jpg" },
|
||||
{ name: "Vikram V.", handle: "@vikram_v", testimonial: "Near PNB bank, very convenient. Highly recommended!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-people-antique-store_23-2149640700.jpg" }
|
||||
]}
|
||||
buttons={[{ text: "Order Now", href: "/menu" }, { text: "Visit Us", href: "/contact" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/boy-eating-restaurant_23-2148172673.jpg"
|
||||
imageAlt="Cafeteria Wall Interior"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/boy-eating-restaurant_23-2148172673.jpg",
|
||||
alt: "Rahul S.",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/top-view-delicious-snacks-drinks_23-2148941535.jpg",
|
||||
alt: "Priya D.",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/top-view-yummy-fruity-cake-with-cookies-cup-tea-dark-surface-biscuit-cookie-tea-sweet-cake-pie_140725-118436.jpg",
|
||||
alt: "Amit K.",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/piece-delicious-cake-purple-plate_114579-45443.jpg",
|
||||
alt: "Sonia R.",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/top-view-spicy-crispy-chips-orange-dish-with-pine-nuts-bowl-wooden-table_141793-88850.jpg",
|
||||
alt: "Vikram V.",
|
||||
},
|
||||
]}
|
||||
avatars={[{ src: "http://img.b2bpic.net/free-photo/boy-eating-restaurant_23-2148172673.jpg", alt: "Rahul S." }, { src: "http://img.b2bpic.net/free-photo/top-view-delicious-snacks-drinks_23-2148941535.jpg", alt: "Priya D." }, { src: "http://img.b2bpic.net/free-photo/top-view-yummy-fruity-cake-with-cookies-cup-tea-dark-surface-biscuit-cookie-tea-sweet-cake-pie_140725-118436.jpg", alt: "Amit K." }, { src: "http://img.b2bpic.net/free-photo/piece-delicious-cake-purple-plate_114579-45443.jpg", alt: "Sonia R." }, { src: "http://img.b2bpic.net/free-photo/top-view-spicy-crispy-chips-orange-dish-with-pine-nuts-bowl-wooden-table_141793-88850.jpg", alt: "Vikram V." }]}
|
||||
avatarText="Loved by the community"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Freshly Brewed",
|
||||
icon: Coffee,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Quality Ingredients",
|
||||
icon: Leaf,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Cozy Atmosphere",
|
||||
icon: Coffee,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Community Focused",
|
||||
icon: Users,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Located in Meham",
|
||||
icon: MapPin,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="ecommerce" data-section="ecommerce">
|
||||
<ProductCartItem />
|
||||
</div>
|
||||
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardSix
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardEleven
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardEight
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
marqueeItems={[{ type: "text-icon", text: "Freshly Brewed", icon: Coffee }, { type: "text-icon", text: "Quality Ingredients", icon: Leaf }, { type: "text-icon", text: "Cozy Atmosphere", icon: Coffee }, { type: "text-icon", text: "Community Focused", icon: Users }, { type: "text-icon", text: "Located in Meham", icon: MapPin }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/person-cafe-enjoying-book_23-2150064701.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/person-cafe-enjoying-book_23-2150064701.jpg"
|
||||
logoText="Cafeteria Wall"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Visit Us",
|
||||
items: [
|
||||
{
|
||||
label: "Meham, Haryana",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Open Mon-Sun",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={[{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "About Us", href: "/about" }, { label: "Menu", href: "/menu" }, { label: "Contact", href: "/contact" }] }, { title: "Visit Us", items: [{ label: "Meham, Haryana", href: "#" }, { label: "Open Mon-Sun", href: "#" }] }]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user