Update src/app/page.tsx
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import HeroBillboardDashboard from "@/components/sections/hero/HeroBillboardDashboard";
|
||||
import MediaAbout from "@/components/sections/about/MediaAbout";
|
||||
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
|
||||
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
|
||||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import { Zap, Heart, Clock, Star, Camera, MapPin, Home, UtensilsCrossed, Flame, Droplet, Sparkles, Sun, Leaf } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
@@ -34,7 +34,8 @@ export default function LandingPage() {
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
button={{
|
||||
text: "Visit Instagram", href: "https://www.instagram.com/shreepanditjifoods"}}
|
||||
text: "Visit Instagram", href: "https://www.instagram.com/shreepanditjifoods"
|
||||
}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -65,14 +66,17 @@ export default function LandingPage() {
|
||||
],
|
||||
stats: [
|
||||
{
|
||||
title: "Years", values: ["25", "26", "27"],
|
||||
description: "Serving the community with love"},
|
||||
title: "Years", values: [25, 26, 27],
|
||||
description: "Serving the community with love"
|
||||
},
|
||||
{
|
||||
title: "Dishes", values: ["15", "18", "20"],
|
||||
description: "Authentic recipes perfected"},
|
||||
title: "Dishes", values: [15, 18, 20],
|
||||
description: "Authentic recipes perfected"
|
||||
},
|
||||
{
|
||||
title: "Customers", values: ["500", "750", "1000"],
|
||||
description: "Happy guests daily"},
|
||||
title: "Customers", values: [500, 750, 1000],
|
||||
description: "Happy guests daily"
|
||||
},
|
||||
],
|
||||
chartTitle: "Daily Visitors", chartData: [
|
||||
{ value: 45 },
|
||||
@@ -98,7 +102,7 @@ export default function LandingPage() {
|
||||
tagIcon={Heart}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[{ text: "Visit Us", href: "#contact" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/cooking-process-asian-restaurant-cook-is-fry-vegetables-with-spices-sauce-wok_613910-19809.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/cooking-process-asian-restaurant-cook-is-fry-vegetables-with-spices-sauce-wok_613910-19809.jpg"
|
||||
imageAlt="Shree Pandit Ji Foods storefront and authentic preparation"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
@@ -111,7 +115,7 @@ export default function LandingPage() {
|
||||
tag="When We're Open"
|
||||
tagIcon={Clock}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/cooking-process-asian-restaurant-cook-is-fry-vegetables-with-spices-sauce-wok_613910-19809.jpg?_wi=2"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/cooking-process-asian-restaurant-cook-is-fry-vegetables-with-spices-sauce-wok_613910-19809.jpg"
|
||||
imageAlt="Street food being prepared during service hours"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
@@ -134,22 +138,28 @@ export default function LandingPage() {
|
||||
products={[
|
||||
{
|
||||
id: "1", brand: "Morning Special", name: "Bun Makhan", price: "₹40", rating: 5,
|
||||
reviewCount: "500+", imageSrc: "http://img.b2bpic.net/free-photo/hamburgers-white-plate_181624-8125.jpg", imageAlt: "Golden baked bun with butter"},
|
||||
reviewCount: "500+", imageSrc: "http://img.b2bpic.net/free-photo/hamburgers-white-plate_181624-8125.jpg", imageAlt: "Golden baked bun with butter"
|
||||
},
|
||||
{
|
||||
id: "2", brand: "Refreshing", name: "Buttermilk", price: "₹20", rating: 5,
|
||||
reviewCount: "450+", imageSrc: "http://img.b2bpic.net/free-photo/coffee-with-green-syrup_140725-3394.jpg", imageAlt: "Chilled buttermilk in glass"},
|
||||
reviewCount: "450+", imageSrc: "http://img.b2bpic.net/free-photo/coffee-with-green-syrup_140725-3394.jpg", imageAlt: "Chilled buttermilk in glass"
|
||||
},
|
||||
{
|
||||
id: "3", brand: "Evening Special", name: "Veg Fried Rice", price: "₹60", rating: 5,
|
||||
reviewCount: "320+", imageSrc: "http://img.b2bpic.net/free-photo/style-still-life-with-noodles-bowl_1150-19792.jpg", imageAlt: "Steaming veg fried rice"},
|
||||
reviewCount: "320+", imageSrc: "http://img.b2bpic.net/free-photo/style-still-life-with-noodles-bowl_1150-19792.jpg", imageAlt: "Steaming veg fried rice"
|
||||
},
|
||||
{
|
||||
id: "4", brand: "Evening Special", name: "Veg Noodles", price: "₹60", rating: 5,
|
||||
reviewCount: "310+", imageSrc: "http://img.b2bpic.net/free-photo/delicious-stir-fry-noodles-with-beef-chopsticks-with-soup-bowl-wooden-desk_23-2148093356.jpg", imageAlt: "Hot veg noodles with vegetables"},
|
||||
reviewCount: "310+", imageSrc: "http://img.b2bpic.net/free-photo/delicious-stir-fry-noodles-with-beef-chopsticks-with-soup-bowl-wooden-desk_23-2148093356.jpg", imageAlt: "Hot veg noodles with vegetables"
|
||||
},
|
||||
{
|
||||
id: "5", brand: "Premium", name: "Paneer Manchurian", price: "₹90", rating: 5,
|
||||
reviewCount: "280+", imageSrc: "http://img.b2bpic.net/free-photo/fried-tofu-chili-salt_1339-4743.jpg", imageAlt: "Crispy paneer in manchurian sauce"},
|
||||
reviewCount: "280+", imageSrc: "http://img.b2bpic.net/free-photo/fried-tofu-chili-salt_1339-4743.jpg", imageAlt: "Crispy paneer in manchurian sauce"
|
||||
},
|
||||
{
|
||||
id: "6", brand: "Premium", name: "Chilli Paneer", price: "₹85", rating: 5,
|
||||
reviewCount: "270+", imageSrc: "http://img.b2bpic.net/free-photo/side-view-multi-colored-meatballs-with-tomato-sauces-green-onions_140725-13961.jpg", imageAlt: "Spicy chilli paneer with peppers"},
|
||||
reviewCount: "270+", imageSrc: "http://img.b2bpic.net/free-photo/side-view-multi-colored-meatballs-with-tomato-sauces-green-onions_140725-13961.jpg", imageAlt: "Spicy chilli paneer with peppers"
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -217,9 +227,11 @@ export default function LandingPage() {
|
||||
items: [
|
||||
{ label: "Contact", href: "#contact" },
|
||||
{
|
||||
label: "Location", href: "https://maps.google.com/maps?q=mall+road+kanpur"},
|
||||
label: "Location", href: "https://maps.google.com/maps?q=mall+road+kanpur"
|
||||
},
|
||||
{
|
||||
label: "Instagram", href: "https://www.instagram.com/shreepanditjifoods"},
|
||||
label: "Instagram", href: "https://www.instagram.com/shreepanditjifoods"
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user