Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a9a83cdd30 | |||
| aceb78d072 | |||
| b627eb06f1 | |||
| 54f3310353 | |||
| e0463f8505 | |||
| 160b48f652 |
374
src/app/page.tsx
374
src/app/page.tsx
@@ -1,379 +1,63 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import Link from "next/link";
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi";
|
import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi";
|
||||||
import MetricCardTen from "@/components/sections/metrics/MetricCardTen";
|
|
||||||
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
|
|
||||||
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
|
|
||||||
import SplitAbout from "@/components/sections/about/SplitAbout";
|
|
||||||
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
|
||||||
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
|
||||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
import { Sparkles, Heart, Gift, Zap, Users, CreditCard, Star, MapPin, HelpCircle } from "lucide-react";
|
import { Cake } from "lucide-react";
|
||||||
|
|
||||||
export default function HomePage() {
|
export default function BirthdaySurprisePage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Home", id: "home" },
|
{ name: "For Nishi", id: "hero" },
|
||||||
{ name: "Collections", id: "collections" },
|
{ name: "Birthday Wishes", id: "wishes" },
|
||||||
{ name: "Custom Jewellery", id: "custom" },
|
|
||||||
{ name: "About", id: "about" },
|
|
||||||
{ name: "Contact", id: "contact" },
|
|
||||||
];
|
|
||||||
|
|
||||||
const footerColumns = [
|
|
||||||
{
|
|
||||||
title: "Quick Links",
|
|
||||||
items: [
|
|
||||||
{ label: "Home", href: "/" },
|
|
||||||
{ label: "Collections", href: "/collections" },
|
|
||||||
{ label: "Custom Jewellery", href: "/custom-jewellery" },
|
|
||||||
{ label: "About Us", href: "/about" },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Contact",
|
|
||||||
items: [
|
|
||||||
{ label: "Call: +91 90390 78555", href: "tel:+919039078555" },
|
|
||||||
{ label: "WhatsApp Us", href: "https://wa.me/919039078555" },
|
|
||||||
{ label: "Get Directions", href: "https://maps.google.com/?q=Kisna+DB+City+Mall+Bhopal" },
|
|
||||||
{ label: "Email Support", href: "mailto:info@kisna.com" },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Company",
|
|
||||||
items: [
|
|
||||||
{ label: "About Kisna", href: "/about" },
|
|
||||||
{ label: "Hari Krishna Group", href: "#" },
|
|
||||||
{ label: "Privacy Policy", href: "#" },
|
|
||||||
{ label: "Terms & Conditions", href: "#" },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Store Hours",
|
|
||||||
items: [
|
|
||||||
{ label: "Monday - Sunday", href: "#" },
|
|
||||||
{ label: "11:00 AM - 9:30 PM", href: "#" },
|
|
||||||
{ label: "DB City Mall", href: "https://maps.google.com/?q=Kisna+DB+City+Mall+Bhopal" },
|
|
||||||
{ label: "Bhopal, India", href: "#" },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="icon-arrow"
|
defaultButtonVariant="hover-magnetic"
|
||||||
defaultTextAnimation="background-highlight"
|
defaultTextAnimation="background-highlight"
|
||||||
borderRadius="rounded"
|
borderRadius="pill"
|
||||||
contentWidth="small"
|
contentWidth="medium"
|
||||||
sizing="mediumLargeSizeLargeTitles"
|
sizing="largeSizeMediumTitles"
|
||||||
background="floatingGradient"
|
background="floatingGradient"
|
||||||
cardStyle="glass-depth"
|
cardStyle="glass-elevated"
|
||||||
primaryButtonStyle="double-inset"
|
primaryButtonStyle="primary-glow"
|
||||||
secondaryButtonStyle="radial-glow"
|
secondaryButtonStyle="solid"
|
||||||
headingFontWeight="bold"
|
headingFontWeight="extrabold"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
brandName="Kisna"
|
brandName="Happy Birthday!"
|
||||||
button={{
|
button={{ text: "Send Love", href: "#" }}
|
||||||
text: "Call Now",
|
|
||||||
href: "tel:+919039078555",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplitKpi
|
<HeroSplitKpi
|
||||||
title="Premium Diamond & Gold Jewellery in Bhopal"
|
title="Happy Birthday, Nishi!"
|
||||||
description="Explore 8000+ exclusive designs by Kisna - BIS Hallmarked Gold, IGI Certified Diamonds, and Lifetime Buyback Guarantee. Your trusted jewellery destination at DB City Mall."
|
description="A day as special as you are! Wishing you a year full of purr-fect moments, endless joy, and all the love in the world. May your day be as sweet as you are!"
|
||||||
tag="Premium Jewellery"
|
tag="Celebration"
|
||||||
tagIcon={Sparkles}
|
tagIcon={Cake}
|
||||||
tagAnimation="slide-up"
|
|
||||||
buttons={[
|
|
||||||
{ text: "Call Now", href: "tel:+919039078555" },
|
|
||||||
{ text: "WhatsApp Us", href: "https://wa.me/919039078555" },
|
|
||||||
{ text: "Get Directions", href: "https://maps.google.com/?q=Kisna+DB+City+Mall+Bhopal" },
|
|
||||||
]}
|
|
||||||
buttonAnimation="slide-up"
|
|
||||||
kpis={[
|
kpis={[
|
||||||
{ value: "8000+", label: "Exclusive Designs" },
|
{ value: "Unlimited", label: "Joy & Smiles" },
|
||||||
{ value: "4.8★", label: "228+ Reviews" },
|
{ value: "100%", label: "Happiness" },
|
||||||
{ value: "20+ Years", label: "Trusted Quality" },
|
{ value: "Always", label: "Loved" },
|
||||||
]}
|
]}
|
||||||
|
background={{ variant: "plain" }}
|
||||||
enableKpiAnimation={true}
|
enableKpiAnimation={true}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/happy-young-woman-entering-glass-door-into-modern-hotel-cafe-business-centre-wearing-stylish-glasses-pink-jacket-little-silver-backpack_197531-3160.jpg?_wi=1"
|
mediaAnimation="opacity"
|
||||||
imageAlt="Premium jewellery collection showcase"
|
imageSrc="http://img.b2bpic.net/free-photo/cute-cat-wearing-birthday-hat-with-balloon_23-2148454228.jpg?_wi=1"
|
||||||
mediaAnimation="slide-up"
|
imageAlt="Cute birthday cat"
|
||||||
imagePosition="right"
|
buttons={[{ text: "I Love You!" }]}
|
||||||
background={{ variant: "plain" }}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="trust-badges" data-section="trust-badges">
|
|
||||||
<MetricCardTen
|
|
||||||
title="Why Choose Kisna?"
|
|
||||||
description="Trusted by thousands of customers across Bhopal for authentic, certified jewellery with lifetime benefits."
|
|
||||||
metrics={[
|
|
||||||
{
|
|
||||||
id: "bis-hallmark",
|
|
||||||
title: "BIS Hallmarked Gold",
|
|
||||||
subtitle: "100% Certified",
|
|
||||||
category: "Authenticity",
|
|
||||||
value: "Guaranteed",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "igi-certified",
|
|
||||||
title: "IGI Certified Diamonds",
|
|
||||||
subtitle: "International Standards",
|
|
||||||
category: "Quality",
|
|
||||||
value: "Certified",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "lifetime-exchange",
|
|
||||||
title: "Lifetime Exchange",
|
|
||||||
subtitle: "Exchange Old Jewellery",
|
|
||||||
category: "Service",
|
|
||||||
value: "Free",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "lifetime-buyback",
|
|
||||||
title: "Lifetime Buyback",
|
|
||||||
subtitle: "At Best Market Rate",
|
|
||||||
category: "Value",
|
|
||||||
value: "Guaranteed",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="collections" data-section="collections">
|
|
||||||
<ProductCardTwo
|
|
||||||
title="Featured Jewellery Collections"
|
|
||||||
description="Browse our exclusive range of diamond rings, gold bangles, mangalsutra, and more - each piece crafted with precision and elegance."
|
|
||||||
tag="Popular Collections"
|
|
||||||
tagIcon={Heart}
|
|
||||||
tagAnimation="slide-up"
|
|
||||||
buttons={[{ text: "View All Collections", href: "/collections" }]}
|
|
||||||
buttonAnimation="slide-up"
|
|
||||||
products={[
|
|
||||||
{
|
|
||||||
id: "diamond-rings",
|
|
||||||
brand: "Kisna",
|
|
||||||
name: "Diamond Rings",
|
|
||||||
price: "Starting ₹25,000",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "45+",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-arrangement-with-proposal-ring-rose_23-2148357896.jpg?_wi=1",
|
|
||||||
imageAlt: "Premium diamond rings collection",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "gold-bangles",
|
|
||||||
brand: "Kisna",
|
|
||||||
name: "Gold Bangles",
|
|
||||||
price: "Starting ₹15,000",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "62+",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-listening-music_23-2148286120.jpg?_wi=1",
|
|
||||||
imageAlt: "Elegant gold bangles collection",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "mangalsutra",
|
|
||||||
brand: "Kisna",
|
|
||||||
name: "Mangalsutra",
|
|
||||||
price: "Starting ₹18,000",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "38+",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-indian-woman-wearing-sari_23-2149400846.jpg?_wi=1",
|
|
||||||
imageAlt: "Traditional and modern mangalsutra designs",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "diamond-necklace",
|
|
||||||
brand: "Kisna",
|
|
||||||
name: "Diamond Necklaces",
|
|
||||||
price: "Starting ₹35,000",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "52+",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-female-wearing-beautiful-silver-necklace_181624-23666.jpg?_wi=1",
|
|
||||||
imageAlt: "Exquisite diamond necklace collection",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "earrings",
|
|
||||||
brand: "Kisna",
|
|
||||||
name: "Gold Earrings",
|
|
||||||
price: "Starting ₹8,000",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "71+",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-pretty-woman-with-curly-hair-stylish-black-outfit_197531-2617.jpg?_wi=1",
|
|
||||||
imageAlt: "Beautiful gold earrings collection",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "pendant",
|
|
||||||
brand: "Kisna",
|
|
||||||
name: "Diamond Pendants",
|
|
||||||
price: "Starting ₹12,000",
|
|
||||||
rating: 5,
|
|
||||||
reviewCount: "48+",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-female-wearing-white-shirt-delicate-silver-charm-necklace_181624-24736.jpg?_wi=1",
|
|
||||||
imageAlt: "Elegant diamond pendant designs",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
gridVariant="three-columns-all-equal-width"
|
|
||||||
carouselMode="buttons"
|
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={true}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
|
||||||
<TestimonialCardTwelve
|
|
||||||
testimonials={[
|
|
||||||
{
|
|
||||||
id: "1",
|
|
||||||
name: "Priya Sharma",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/serious-executive-with-short-hair-crossed-arms_1149-89.jpg?_wi=1",
|
|
||||||
imageAlt: "professional woman portrait headshot",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2",
|
|
||||||
name: "Rajesh Verma",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-modern-male_23-2148514900.jpg?_wi=1",
|
|
||||||
imageAlt: "professional man portrait headshot",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "3",
|
|
||||||
name: "Anjali Gupta",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-man-showing-thumbs-up-looking-camera_1262-14435.jpg?_wi=1",
|
|
||||||
imageAlt: "professional woman portrait business",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "4",
|
|
||||||
name: "Vikram Patel",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-smiling-businessman-office_1163-5471.jpg?_wi=1",
|
|
||||||
imageAlt: "professional man business portrait",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
cardTitle="Trusted by 228+ Customers"
|
|
||||||
cardTag="Verified Reviews"
|
|
||||||
cardTagIcon={Star}
|
|
||||||
cardAnimation="slide-up"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="special-offers" data-section="special-offers">
|
|
||||||
<SplitAbout
|
|
||||||
title="Special Offers This Season"
|
|
||||||
description="Visit our store today and enjoy exclusive discounts on premium jewellery. Limited time offers on engagement rings, wedding collections, and festival jewellery."
|
|
||||||
tag="Limited Time Offer"
|
|
||||||
tagIcon={Gift}
|
|
||||||
tagAnimation="slide-up"
|
|
||||||
buttons={[
|
|
||||||
{ text: "Book Store Visit", href: "https://maps.google.com/?q=Kisna+DB+City+Mall+Bhopal" },
|
|
||||||
{ text: "Check Gold Rate", href: "tel:+919039078555" },
|
|
||||||
]}
|
|
||||||
buttonAnimation="slide-up"
|
|
||||||
bulletPoints={[
|
|
||||||
{
|
|
||||||
title: "Up to ₹1000 OFF",
|
|
||||||
description: "Per gram on select jewellery purchases",
|
|
||||||
icon: Zap,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Free Jewellery Consultation",
|
|
||||||
description: "Expert guidance on designs and prices",
|
|
||||||
icon: Users,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Easy Payment Plans",
|
|
||||||
description: "Flexible installment options available",
|
|
||||||
icon: CreditCard,
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
imageSrc="http://img.b2bpic.net/free-vector/promotion-square-banner-collectio_52683-6123.jpg"
|
|
||||||
imageAlt="Special seasonal offers"
|
|
||||||
mediaAnimation="slide-up"
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={true}
|
|
||||||
imagePosition="right"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="location" data-section="location">
|
|
||||||
<ContactSplit
|
|
||||||
tag="Visit Us"
|
|
||||||
title="Find Us at DB City Mall"
|
|
||||||
description="Shop No G-3, Ground Floor, DB City Mall, Zone-I, Maharana Pratap Nagar, Arera Hill Road, Bhopal. Open daily 11:00 AM - 9:30 PM."
|
|
||||||
tagIcon={MapPin}
|
|
||||||
tagAnimation="slide-up"
|
|
||||||
background={{ variant: "plain" }}
|
|
||||||
mediaAnimation="slide-up"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/modern-building-view_1112-392.jpg?_wi=1"
|
|
||||||
imageAlt="Store location map navigation"
|
|
||||||
mediaPosition="right"
|
|
||||||
inputPlaceholder="Enter your phone number"
|
|
||||||
buttonText="Get Directions"
|
|
||||||
termsText="Click to navigate to our store on Google Maps."
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
|
||||||
<FaqDouble
|
|
||||||
title="Frequently Asked Questions"
|
|
||||||
description="Find answers to common questions about our jewellery, certifications, and services."
|
|
||||||
tag="Help Center"
|
|
||||||
tagIcon={HelpCircle}
|
|
||||||
tagAnimation="slide-up"
|
|
||||||
faqs={[
|
|
||||||
{
|
|
||||||
id: "1",
|
|
||||||
title: "Are all jewellery BIS hallmarked?",
|
|
||||||
content: "Yes, all our gold jewellery is 100% BIS hallmarked, ensuring purity and authenticity.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2",
|
|
||||||
title: "Do you provide certification for diamonds?",
|
|
||||||
content: "All diamonds above 0.5 carat come with IGI certification. We ensure international quality standards.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "3",
|
|
||||||
title: "What is the lifetime buyback policy?",
|
|
||||||
content: "We buyback your jewellery at the best market rate, anytime. No hidden charges or conditions.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "4",
|
|
||||||
title: "Can I customize my jewellery design?",
|
|
||||||
content: "Absolutely! Our expert craftsmen can create custom designs based on your preferences and budget.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "5",
|
|
||||||
title: "What payment options are available?",
|
|
||||||
content: "We accept cash, credit/debit cards, digital payments, and offer flexible installment plans.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "6",
|
|
||||||
title: "How do I contact the store?",
|
|
||||||
content: "Call us at +91 90390 78555 or visit our store at DB City Mall. You can also WhatsApp us anytime.",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
faqsAnimation="slide-up"
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={true}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBase
|
<FooterBase
|
||||||
logoText="Kisna Jewellery"
|
columns={[]}
|
||||||
copyrightText="© 2025 Kisna Diamond & Gold Jewellery | All Rights Reserved"
|
logoText="Birthday Wishes for Nishi"
|
||||||
columns={footerColumns}
|
copyrightText="Made with love and cat stickers"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
Reference in New Issue
Block a user