Update src/app/page.tsx
This commit is contained in:
213
src/app/page.tsx
213
src/app/page.tsx
@@ -32,25 +32,15 @@ export default function LandingPage() {
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
name: "About", id: "about"},
|
||||
{
|
||||
name: "Collections",
|
||||
id: "collections",
|
||||
},
|
||||
name: "Collections", id: "collections"},
|
||||
{
|
||||
name: "Products",
|
||||
id: "products",
|
||||
},
|
||||
name: "Products", id: "products"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
brandName="Om Jewellers"
|
||||
/>
|
||||
@@ -62,39 +52,23 @@ export default function LandingPage() {
|
||||
description="Timeless Elegance. Trusted Purity. Om Jewellers brings generations of trust with exquisite gold and silver craftsmanship."
|
||||
buttons={[
|
||||
{
|
||||
text: "Explore Collection",
|
||||
href: "#products",
|
||||
},
|
||||
text: "Explore Collection", href: "#products"},
|
||||
{
|
||||
text: "Visit Store",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Visit Store", href: "#contact"},
|
||||
]}
|
||||
slides={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/texture-metal-cota_1122-964.jpg",
|
||||
imageAlt: "Luxury gold jewellery",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/texture-metal-cota_1122-964.jpg", imageAlt: "Luxury gold jewellery"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-elegant-diamond-ring-woman-finger-woman-wearing-black-dress-love-wedding-concept-soft-natural-day-light-selective-focus_343596-807.jpg",
|
||||
imageAlt: "Diamond ring detail",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-elegant-diamond-ring-woman-finger-woman-wearing-black-dress-love-wedding-concept-soft-natural-day-light-selective-focus_343596-807.jpg", imageAlt: "Diamond ring detail"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/golden-ornaments-sparkling-stars-festive-blue-gradient-background_23-2152031224.jpg",
|
||||
imageAlt: "Gold bangles collection",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/golden-ornaments-sparkling-stars-festive-blue-gradient-background_23-2152031224.jpg", imageAlt: "Gold bangles collection"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fashion-jewelry-closeup-bracelet-pendant-elegance_1400-28.jpg",
|
||||
imageAlt: "Silver jewellery set",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fashion-jewelry-closeup-bracelet-pendant-elegance_1400-28.jpg", imageAlt: "Silver jewellery set"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-glitter-decoration-detail_23-2149048301.jpg",
|
||||
imageAlt: "Gold coins and gifts",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-glitter-decoration-detail_23-2149048301.jpg", imageAlt: "Gold coins and gifts"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/engagement-ring-is-small-box_8353-9816.jpg",
|
||||
imageAlt: "Bridal luxury set",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/engagement-ring-is-small-box_8353-9816.jpg", imageAlt: "Bridal luxury set"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -109,39 +83,28 @@ export default function LandingPage() {
|
||||
|
||||
<div id="collections" data-section="collections">
|
||||
<FeatureBorderGlow
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
icon: Circle,
|
||||
title: "Gold Jewellery",
|
||||
description: "Pure gold designs for every occasion.",
|
||||
},
|
||||
title: "Gold Jewellery", description: "Pure gold designs for every occasion."},
|
||||
{
|
||||
icon: Sparkles,
|
||||
title: "Silver Jewellery",
|
||||
description: "Elegance defined in sterling silver.",
|
||||
},
|
||||
title: "Silver Jewellery", description: "Elegance defined in sterling silver."},
|
||||
{
|
||||
icon: Heart,
|
||||
title: "Bridal Collection",
|
||||
description: "Make your special day unforgettable.",
|
||||
},
|
||||
title: "Bridal Collection", description: "Make your special day unforgettable."},
|
||||
{
|
||||
icon: Diamond,
|
||||
title: "Necklaces",
|
||||
description: "Statement pieces for royalty.",
|
||||
},
|
||||
title: "Necklaces", description: "Statement pieces for royalty."},
|
||||
{
|
||||
icon: CheckCircle,
|
||||
title: "Rings",
|
||||
description: "Tokens of love and eternity.",
|
||||
},
|
||||
title: "Rings", description: "Tokens of love and eternity."},
|
||||
{
|
||||
icon: CheckCircle,
|
||||
title: "Coins & Gifts",
|
||||
description: "Perfect blessings for your loved ones.",
|
||||
},
|
||||
title: "Coins & Gifts", description: "Perfect blessings for your loved ones."},
|
||||
]}
|
||||
title="Exquisite Collections"
|
||||
description="Discover our curated ranges crafted for perfection."
|
||||
@@ -155,31 +118,16 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "100%",
|
||||
title: "Purity Guaranteed",
|
||||
items: [
|
||||
"Hallmarked Gold",
|
||||
"Authentic Silver",
|
||||
],
|
||||
id: "1", value: "100%", title: "Purity Guaranteed", items: [
|
||||
"Hallmarked Gold", "Authentic Silver"],
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "50+",
|
||||
title: "Years of Trust",
|
||||
items: [
|
||||
"Generational Goodwill",
|
||||
"Proven Legacy",
|
||||
],
|
||||
id: "2", value: "50+", title: "Years of Trust", items: [
|
||||
"Generational Goodwill", "Proven Legacy"],
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "10k+",
|
||||
title: "Happy Families",
|
||||
items: [
|
||||
"Personalized Service",
|
||||
"Fair Pricing",
|
||||
],
|
||||
id: "3", value: "10k+", title: "Happy Families", items: [
|
||||
"Personalized Service", "Fair Pricing"],
|
||||
},
|
||||
]}
|
||||
title="Why Om Jewellers?"
|
||||
@@ -195,41 +143,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Royal Gold Chain",
|
||||
price: "$1,200",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/jewelry-lifestyle-flat-layout-with-place-text-jewellery-background-mockup-banner-fashion-accessories_460848-13222.jpg",
|
||||
},
|
||||
id: "p1", name: "Royal Gold Chain", price: "$1,200", imageSrc: "http://img.b2bpic.net/free-photo/jewelry-lifestyle-flat-layout-with-place-text-jewellery-background-mockup-banner-fashion-accessories_460848-13222.jpg"},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Solitaire Ring",
|
||||
price: "$2,500",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/shiny-gold-wedding-ring-with-diamond-gemstone-generated-by-ai_188544-37378.jpg",
|
||||
},
|
||||
id: "p2", name: "Solitaire Ring", price: "$2,500", imageSrc: "http://img.b2bpic.net/free-photo/shiny-gold-wedding-ring-with-diamond-gemstone-generated-by-ai_188544-37378.jpg"},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Ornate Bangles",
|
||||
price: "$3,200",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elegant-indian-bride-adorning-herself-with-jewelry_23-2151996280.jpg",
|
||||
},
|
||||
id: "p3", name: "Ornate Bangles", price: "$3,200", imageSrc: "http://img.b2bpic.net/free-photo/elegant-indian-bride-adorning-herself-with-jewelry_23-2151996280.jpg"},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Silver Danglers",
|
||||
price: "$450",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-young-woman-posing-with-flower_23-2149513259.jpg",
|
||||
},
|
||||
id: "p4", name: "Silver Danglers", price: "$450", imageSrc: "http://img.b2bpic.net/free-photo/side-view-young-woman-posing-with-flower_23-2149513259.jpg"},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Sovereign Gold Coin",
|
||||
price: "$800",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/money-brazilian-coins-25-centavos_58702-6244.jpg",
|
||||
},
|
||||
id: "p5", name: "Sovereign Gold Coin", price: "$800", imageSrc: "http://img.b2bpic.net/free-photo/money-brazilian-coins-25-centavos_58702-6244.jpg"},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Classic Pendant",
|
||||
price: "$600",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/shiny-gemstone-necklace-reflects-elegance-glamour-generated-by-ai_188544-10583.jpg",
|
||||
},
|
||||
id: "p6", name: "Classic Pendant", price: "$600", imageSrc: "http://img.b2bpic.net/free-photo/shiny-gemstone-necklace-reflects-elegance-glamour-generated-by-ai_188544-10583.jpg"},
|
||||
]}
|
||||
title="Featured Masterpieces"
|
||||
description="Our latest hand-picked collection."
|
||||
@@ -241,30 +165,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Miller",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-looking-camera_23-2148304959.jpg",
|
||||
},
|
||||
id: "1", name: "Sarah Miller", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-looking-camera_23-2148304959.jpg"},
|
||||
{
|
||||
id: "2",
|
||||
name: "James & Emma",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-elegant-luxurious-wedding-stationery-planner-resources_23-2150166950.jpg",
|
||||
},
|
||||
id: "2", name: "James & Emma", imageSrc: "http://img.b2bpic.net/free-photo/view-elegant-luxurious-wedding-stationery-planner-resources_23-2150166950.jpg"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Robert Chen",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-work_1098-13068.jpg",
|
||||
},
|
||||
id: "3", name: "Robert Chen", imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-work_1098-13068.jpg"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Anita Desai",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/03-18-2019-belarus-minsk-portrait-young-elegant-woman-looking-camera_132075-13788.jpg",
|
||||
},
|
||||
id: "4", name: "Anita Desai", imageSrc: "http://img.b2bpic.net/free-photo/03-18-2019-belarus-minsk-portrait-young-elegant-woman-looking-camera_132075-13788.jpg"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Vikram Singh",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-blond-man-dark-blue-shirt-posing-grey-background-studio_613910-12752.jpg",
|
||||
},
|
||||
id: "5", name: "Vikram Singh", imageSrc: "http://img.b2bpic.net/free-photo/handsome-blond-man-dark-blue-shirt-posing-grey-background-studio_613910-12752.jpg"},
|
||||
]}
|
||||
cardTitle="Client Experiences"
|
||||
cardTag="Testimonials"
|
||||
@@ -284,8 +193,7 @@ export default function LandingPage() {
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
variant: "gradient-bars"}}
|
||||
tag="Get In Touch"
|
||||
title="Visit Our Store"
|
||||
description="Experience our jewellery collection in person at our local store. We welcome you for personalized service."
|
||||
@@ -297,54 +205,33 @@ export default function LandingPage() {
|
||||
logoText="Om Jewellers"
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#about",
|
||||
},
|
||||
label: "About Us", href: "#about"},
|
||||
{
|
||||
label: "Our Values",
|
||||
href: "#trust",
|
||||
},
|
||||
label: "Our Values", href: "#trust"},
|
||||
{
|
||||
label: "Store Location",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Store Location", href: "#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Collections",
|
||||
items: [
|
||||
title: "Collections", items: [
|
||||
{
|
||||
label: "Gold Jewellery",
|
||||
href: "#products",
|
||||
},
|
||||
label: "Gold Jewellery", href: "#products"},
|
||||
{
|
||||
label: "Silver Jewellery",
|
||||
href: "#products",
|
||||
},
|
||||
label: "Silver Jewellery", href: "#products"},
|
||||
{
|
||||
label: "Bridal Collection",
|
||||
href: "#products",
|
||||
},
|
||||
label: "Bridal Collection", href: "#products"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
title: "Support", items: [
|
||||
{
|
||||
label: "WhatsApp Support",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "WhatsApp Support", href: "#contact"},
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Contact Us", href: "#contact"},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
label: "Privacy Policy", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user