Merge version_1 into main #2
@@ -7,7 +7,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
|
||||
import TeamCardSix from '@/components/sections/team/TeamCardSix';
|
||||
import TextAbout from '@/components/sections/about/TextAbout';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="shift-hover"
|
||||
@@ -25,28 +25,14 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Our Diamonds",
|
||||
id: "/diamonds",
|
||||
},
|
||||
{
|
||||
name: "Provenance",
|
||||
id: "/provenance",
|
||||
},
|
||||
{
|
||||
name: "About Us",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Our Diamonds", id: "/diamonds" },
|
||||
{ name: "Provenance", id: "/provenance" },
|
||||
{ name: "About Us", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Sparkles & More"
|
||||
button={{ text: "Enquire", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -64,24 +50,9 @@ export default function LandingPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
members={[
|
||||
{
|
||||
id: "m1",
|
||||
name: "Aarav Sharma",
|
||||
role: "Head of Craftsmanship",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-gold-chain-presentation-rocks_52683-91628.jpg?_wi=5",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
name: "Sophie Chen",
|
||||
role: "Luxury Strategy Lead",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-colorful-lights_23-2147960130.jpg?_wi=4",
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
name: "Priya Gupta",
|
||||
role: "Diamond Investor Liaison",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/queen-crown-still-life_23-2150409286.jpg?_wi=3",
|
||||
},
|
||||
{ id: "m1", name: "Aarav Sharma", role: "Head of Craftsmanship", imageSrc: "http://img.b2bpic.net/free-photo/abstract-gold-chain-presentation-rocks_52683-91628.jpg" },
|
||||
{ id: "m2", name: "Sophie Chen", role: "Luxury Strategy Lead", imageSrc: "http://img.b2bpic.net/free-photo/abstract-colorful-lights_23-2147960130.jpg" },
|
||||
{ id: "m3", name: "Priya Gupta", role: "Diamond Investor Liaison", imageSrc: "http://img.b2bpic.net/free-photo/queen-crown-still-life_23-2150409286.jpg" }
|
||||
]}
|
||||
title="Our Founders"
|
||||
description="Bridging master craft with the premium diamond market."
|
||||
|
||||
@@ -7,7 +7,7 @@ import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="shift-hover"
|
||||
@@ -25,44 +25,23 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Our Diamonds",
|
||||
id: "/diamonds",
|
||||
},
|
||||
{
|
||||
name: "Provenance",
|
||||
id: "/provenance",
|
||||
},
|
||||
{
|
||||
name: "About Us",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Our Diamonds", id: "/diamonds" },
|
||||
{ name: "Provenance", id: "/provenance" },
|
||||
{ name: "About Us", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Sparkles & More"
|
||||
button={{ text: "Enquire", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-form" data-section="contact-form">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
text="Book a Private Viewing for an exclusive, tailored experience."
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Us",
|
||||
href: "mailto:consult@sparklesandmore.com",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Contact Us", href: "mailto:consult@sparklesandmore.com" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -75,37 +54,15 @@ export default function LandingPage() {
|
||||
description="Tailored luxury planning."
|
||||
plans={[
|
||||
{
|
||||
id: "c1",
|
||||
title: "Basic Consultation",
|
||||
price: "Complimentary",
|
||||
period: "N/A",
|
||||
features: [
|
||||
"1 hour session",
|
||||
"Expert guidance",
|
||||
],
|
||||
button: {
|
||||
text: "Book Now",
|
||||
href: "/contact",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-colorful-lights_23-2147960130.jpg?_wi=5",
|
||||
imageAlt: "emerald cut diamond macro",
|
||||
id: "c1", title: "Basic Consultation", price: "Complimentary", period: "N/A", features: ["1 hour session", "Expert guidance"],
|
||||
button: { text: "Book Now", href: "/contact" },
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-colorful-lights_23-2147960130.jpg", imageAlt: "emerald cut diamond macro"
|
||||
},
|
||||
{
|
||||
id: "c2",
|
||||
title: "Investment Advisory",
|
||||
price: "By Request",
|
||||
period: "N/A",
|
||||
features: [
|
||||
"Full portfolio review",
|
||||
"Market insights",
|
||||
],
|
||||
button: {
|
||||
text: "Book Now",
|
||||
href: "/contact",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/queen-crown-still-life_23-2150409286.jpg?_wi=4",
|
||||
imageAlt: "diamond rings macro photography",
|
||||
},
|
||||
id: "c2", title: "Investment Advisory", price: "By Request", period: "N/A", features: ["Full portfolio review", "Market insights"],
|
||||
button: { text: "Book Now", href: "/contact" },
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/queen-crown-still-life_23-2150409286.jpg", imageAlt: "diamond rings macro photography"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -7,7 +7,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function DiamondsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="shift-hover"
|
||||
@@ -25,28 +25,14 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Our Diamonds",
|
||||
id: "/diamonds",
|
||||
},
|
||||
{
|
||||
name: "Provenance",
|
||||
id: "/provenance",
|
||||
},
|
||||
{
|
||||
name: "About Us",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Our Diamonds", id: "/diamonds" },
|
||||
{ name: "Provenance", id: "/provenance" },
|
||||
{ name: "About Us", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Sparkles & More"
|
||||
button={{ text: "Enquire", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -57,42 +43,12 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Solitaire Brilliant Ring",
|
||||
price: "Request Pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/jewelry-bright-studio-luxury-love-vintage_1400-30.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Oval Cut Masterpiece",
|
||||
price: "Request Pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-lady-white-gray-dress-sitting-with-eyes-closed-with-white-wall-daytime_176474-7181.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Emerald Cut Pendant",
|
||||
price: "Request Pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-male-holding-charm-necklace-with-silver-pendant-black-cord_181624-25548.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Princess Cut Engagement",
|
||||
price: "Request Pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wedding-ring-bracelet_1303-11576.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Diamond Drop Earrings",
|
||||
price: "Request Pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elegant-woman-with-silver-jewelery_329181-7299.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Classic Tennis Bracelet",
|
||||
price: "Request Pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-towel-smokes-cigarette-reads-newspaper_1153-4072.jpg?_wi=2",
|
||||
},
|
||||
{ id: "p1", name: "Solitaire Brilliant Ring", price: "Request Pricing", imageSrc: "http://img.b2bpic.net/free-photo/jewelry-bright-studio-luxury-love-vintage_1400-30.jpg" },
|
||||
{ id: "p2", name: "Oval Cut Masterpiece", price: "Request Pricing", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-lady-white-gray-dress-sitting-with-eyes-closed-with-white-wall-daytime_176474-7181.jpg" },
|
||||
{ id: "p3", name: "Emerald Cut Pendant", price: "Request Pricing", imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-male-holding-charm-necklace-with-silver-pendant-black-cord_181624-25548.jpg" },
|
||||
{ id: "p4", name: "Princess Cut Engagement", price: "Request Pricing", imageSrc: "http://img.b2bpic.net/free-photo/wedding-ring-bracelet_1303-11576.jpg" },
|
||||
{ id: "p5", name: "Diamond Drop Earrings", price: "Request Pricing", imageSrc: "http://img.b2bpic.net/free-photo/elegant-woman-with-silver-jewelery_329181-7299.jpg" },
|
||||
{ id: "p6", name: "Classic Tennis Bracelet", price: "Request Pricing", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-towel-smokes-cigarette-reads-newspaper_1153-4072.jpg" }
|
||||
]}
|
||||
title="Our Full Diamond Collection"
|
||||
description="Explore our complete range of certified natural diamonds."
|
||||
@@ -108,20 +64,9 @@ export default function LandingPage() {
|
||||
title="New Arrivals"
|
||||
description="Latest acquisitions from our workshops."
|
||||
products={[
|
||||
{
|
||||
id: "n1",
|
||||
name: "Pear Cut Drop",
|
||||
price: "Contact for pricing",
|
||||
variant: "Premium",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elegant-woman-with-silver-jewelery_329181-7299.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "n2",
|
||||
name: "Tennis Bracelet",
|
||||
price: "Contact for pricing",
|
||||
variant: "Luxury",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-towel-smokes-cigarette-reads-newspaper_1153-4072.jpg?_wi=3",
|
||||
},
|
||||
{ id: "n1", name: "Pear Cut Drop", price: "Contact for pricing", variant: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/elegant-woman-with-silver-jewelery_329181-7299.jpg" },
|
||||
{ id: "n2", name: "Tennis Bracelet", price: "Contact for pricing", variant: "Luxury", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-towel-smokes-cigarette-reads-newspaper_1153-4072.jpg" },
|
||||
{ id: "n3", name: "Classic Ring", price: "Contact for pricing", variant: "Classic", imageSrc: "http://img.b2bpic.net/free-photo/wedding-ring-bracelet_1303-11576.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
157
src/app/page.tsx
157
src/app/page.tsx
@@ -28,59 +28,28 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Our Diamonds",
|
||||
id: "/diamonds",
|
||||
},
|
||||
{
|
||||
name: "Provenance",
|
||||
id: "/provenance",
|
||||
},
|
||||
{
|
||||
name: "About Us",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Our Diamonds", id: "/diamonds" },
|
||||
{ name: "Provenance", id: "/provenance" },
|
||||
{ name: "About Us", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Sparkles & More"
|
||||
button={{ text: "Enquire", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardGallery
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
title="Timeless Elegance in Every Facet"
|
||||
description="Discover exceptional natural diamonds, meticulously sourced and crafted for the discerning collector."
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-gold-chain-presentation-rocks_52683-91628.jpg?_wi=1",
|
||||
imageAlt: "Brilliant cut diamond focus",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-colorful-lights_23-2147960130.jpg?_wi=1",
|
||||
imageAlt: "Emerald cut diamond setting",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/queen-crown-still-life_23-2150409286.jpg?_wi=1",
|
||||
imageAlt: "Luxury bridal diamond jewelry",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/jewelry-bright-studio-luxury-love-vintage_1400-30.jpg?_wi=1",
|
||||
imageAlt: "Round brilliant solitaire",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-lady-white-gray-dress-sitting-with-eyes-closed-with-white-wall-daytime_176474-7181.jpg?_wi=1",
|
||||
imageAlt: "Oval cut masterpiece",
|
||||
},
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/abstract-gold-chain-presentation-rocks_52683-91628.jpg", imageAlt: "Brilliant cut diamond focus" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/abstract-colorful-lights_23-2147960130.jpg", imageAlt: "Emerald cut diamond setting" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/queen-crown-still-life_23-2150409286.jpg", imageAlt: "Luxury bridal diamond jewelry" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/jewelry-bright-studio-luxury-love-vintage_1400-30.jpg", imageAlt: "Round brilliant solitaire" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/beautiful-lady-white-gray-dress-sitting-with-eyes-closed-with-white-wall-daytime_176474-7181.jpg", imageAlt: "Oval cut masterpiece" }
|
||||
]}
|
||||
mediaAnimation="blur-reveal"
|
||||
/>
|
||||
@@ -90,12 +59,7 @@ export default function LandingPage() {
|
||||
<TextAbout
|
||||
useInvertedBackground={false}
|
||||
title="Old-World Craftsmanship Meets Modern Refinement"
|
||||
buttons={[
|
||||
{
|
||||
text: "Discover Our Heritage",
|
||||
href: "/about",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Discover Our Heritage", href: "/about" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -106,42 +70,12 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Solitaire Brilliant Ring",
|
||||
price: "Request Pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/jewelry-bright-studio-luxury-love-vintage_1400-30.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Oval Cut Masterpiece",
|
||||
price: "Request Pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-lady-white-gray-dress-sitting-with-eyes-closed-with-white-wall-daytime_176474-7181.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Emerald Cut Pendant",
|
||||
price: "Request Pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-male-holding-charm-necklace-with-silver-pendant-black-cord_181624-25548.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Princess Cut Engagement",
|
||||
price: "Request Pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wedding-ring-bracelet_1303-11576.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Diamond Drop Earrings",
|
||||
price: "Request Pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elegant-woman-with-silver-jewelery_329181-7299.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Classic Tennis Bracelet",
|
||||
price: "Request Pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-towel-smokes-cigarette-reads-newspaper_1153-4072.jpg?_wi=1",
|
||||
},
|
||||
{ id: "p1", name: "Solitaire Brilliant Ring", price: "Request Pricing", imageSrc: "http://img.b2bpic.net/free-photo/jewelry-bright-studio-luxury-love-vintage_1400-30.jpg" },
|
||||
{ id: "p2", name: "Oval Cut Masterpiece", price: "Request Pricing", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-lady-white-gray-dress-sitting-with-eyes-closed-with-white-wall-daytime_176474-7181.jpg" },
|
||||
{ id: "p3", name: "Emerald Cut Pendant", price: "Request Pricing", imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-male-holding-charm-necklace-with-silver-pendant-black-cord_181624-25548.jpg" },
|
||||
{ id: "p4", name: "Princess Cut Engagement", price: "Request Pricing", imageSrc: "http://img.b2bpic.net/free-photo/wedding-ring-bracelet_1303-11576.jpg" },
|
||||
{ id: "p5", name: "Diamond Drop Earrings", price: "Request Pricing", imageSrc: "http://img.b2bpic.net/free-photo/elegant-woman-with-silver-jewelery_329181-7299.jpg" },
|
||||
{ id: "p6", name: "Classic Tennis Bracelet", price: "Request Pricing", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-towel-smokes-cigarette-reads-newspaper_1153-4072.jpg" }
|
||||
]}
|
||||
title="Featured Collection"
|
||||
description="Exquisite investment-grade natural diamonds curated for excellence."
|
||||
@@ -157,38 +91,11 @@ export default function LandingPage() {
|
||||
title="Client Reflections"
|
||||
description="Hear from our global collectors."
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Marcus V.",
|
||||
role: "Collector",
|
||||
company: "Global Fine Arts",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-gold-chain-presentation-rocks_52683-91628.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Elena R.",
|
||||
role: "Investor",
|
||||
company: "Hedge Fund",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-colorful-lights_23-2147960130.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "David L.",
|
||||
role: "Private Client",
|
||||
company: "Private Office",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/queen-crown-still-life_23-2150409286.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Sarah J.",
|
||||
role: "Jewelry Enthusiast",
|
||||
company: "Fashion Design",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/craftswoman-working-workshop_107420-65182.jpg?_wi=1",
|
||||
},
|
||||
{ id: "t1", name: "Marcus V.", role: "Collector", company: "Global Fine Arts", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/abstract-gold-chain-presentation-rocks_52683-91628.jpg" },
|
||||
{ id: "t2", name: "Elena R.", role: "Investor", company: "Hedge Fund", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/abstract-colorful-lights_23-2147960130.jpg" },
|
||||
{ id: "t3", name: "David L.", role: "Private Client", company: "Private Office", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/queen-crown-still-life_23-2150409286.jpg" },
|
||||
{ id: "t4", name: "Sarah J.", role: "Jewelry Enthusiast", company: "Fashion Design", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/craftswoman-working-workshop_107420-65182.jpg" },
|
||||
{ id: "t5", name: "John D.", role: "Collector", company: "Private", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/abstract-gold-chain-presentation-rocks_52683-91628.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -201,20 +108,8 @@ export default function LandingPage() {
|
||||
title="By The Numbers"
|
||||
description="Proven results for discerning buyers."
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "100%",
|
||||
title: "Natural Origin",
|
||||
description: "Guaranteed earth-mined.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-gold-chain-presentation-rocks_52683-91628.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "500+",
|
||||
title: "Diamonds Sourced",
|
||||
description: "Curated with excellence.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-colorful-lights_23-2147960130.jpg?_wi=3",
|
||||
},
|
||||
{ id: "m1", value: "100%", title: "Natural Origin", description: "Guaranteed earth-mined.", imageSrc: "http://img.b2bpic.net/free-photo/abstract-gold-chain-presentation-rocks_52683-91628.jpg" },
|
||||
{ id: "m2", value: "500+", title: "Diamonds Sourced", description: "Curated with excellence.", imageSrc: "http://img.b2bpic.net/free-photo/abstract-colorful-lights_23-2147960130.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -2,12 +2,13 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import { Gem } from "lucide-react";
|
||||
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
|
||||
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ProvenancePage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="shift-hover"
|
||||
@@ -25,28 +26,14 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Our Diamonds",
|
||||
id: "/diamonds",
|
||||
},
|
||||
{
|
||||
name: "Provenance",
|
||||
id: "/provenance",
|
||||
},
|
||||
{
|
||||
name: "About Us",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Our Diamonds", id: "/diamonds" },
|
||||
{ name: "Provenance", id: "/provenance" },
|
||||
{ name: "About Us", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Sparkles & More"
|
||||
button={{ text: "Enquire", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -56,23 +43,11 @@ export default function LandingPage() {
|
||||
title="Certified Excellence & Provenance"
|
||||
description="Every diamond comes with full GIA certification and a transparent journey."
|
||||
accordionItems={[
|
||||
{
|
||||
id: "a1",
|
||||
title: "GIA Certified",
|
||||
content: "Rigorously graded for peace of mind.",
|
||||
},
|
||||
{
|
||||
id: "a2",
|
||||
title: "100% Natural",
|
||||
content: "Strictly earth-grown, no synthetics.",
|
||||
},
|
||||
{
|
||||
id: "a3",
|
||||
title: "Traceable Journey",
|
||||
content: "Ethical tracking from mine to owner.",
|
||||
},
|
||||
{ id: "a1", title: "GIA Certified", content: "Rigorously graded for peace of mind." },
|
||||
{ id: "a2", title: "100% Natural", content: "Strictly earth-grown, no synthetics." },
|
||||
{ id: "a3", title: "Traceable Journey", content: "Ethical tracking from mine to owner." }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/craftswoman-working-workshop_107420-65182.jpg?_wi=2"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/craftswoman-working-workshop_107420-65182.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
@@ -86,21 +61,14 @@ export default function LandingPage() {
|
||||
description="Transparency from the mine to your finger."
|
||||
features={[
|
||||
{
|
||||
title: "Mining",
|
||||
description: "Ethical extraction standards.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/craftswoman-working-workshop_107420-65182.jpg?_wi=3",
|
||||
},
|
||||
title: "Mining", description: "Ethical extraction standards.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/craftswoman-working-workshop_107420-65182.jpg"},
|
||||
items: [
|
||||
{
|
||||
icon: Gem,
|
||||
text: "Certified Source",
|
||||
},
|
||||
{ icon: Gem, text: "Certified Source" },
|
||||
{ icon: Gem, text: "Ethical Sourcing" }
|
||||
],
|
||||
reverse: false,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-gold-chain-presentation-rocks_52683-91628.jpg?_wi=4",
|
||||
imageAlt: "luxury diamond close-up",
|
||||
},
|
||||
reverse: false
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user