Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a7684a3b23 | |||
| bfcb06ce6b | |||
| 58608d10a9 |
@@ -9,7 +9,7 @@ import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
|
|||||||
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
|
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
|
||||||
import ContactFaq from "@/components/sections/contact/ContactFaq";
|
import ContactFaq from "@/components/sections/contact/ContactFaq";
|
||||||
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
||||||
import { Award, Heart, Calendar, Sparkles } from "lucide-react";
|
import { Award, Heart, Calendar, Sparkles, Crown, Gem } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -59,20 +59,23 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="products" data-section="products">
|
<div id="products" data-section="products">
|
||||||
<ProductCardFour
|
<ProductCardFour
|
||||||
title="Featured Jewelry Collection"
|
title="Curated Jewelry Masterpieces"
|
||||||
description="Discover our curated selection of exquisite pieces, each representing the pinnacle of jewelry craftsmanship and design. Handpicked treasures for the discerning collector."
|
description="Discover our exclusive collection of exquisite pieces, each carefully handpicked and crafted to perfection. Every item represents the pinnacle of luxury jewelry design, showcasing premium materials and exceptional artistry."
|
||||||
tag="Premium Selection"
|
tag="Premium Collection"
|
||||||
tagIcon={Sparkles}
|
tagIcon={Crown}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "1", name: "Eternal Diamond Solitaire Ring", price: "$8,500", variant: "18K White Gold", imageSrc: "http://img.b2bpic.net/free-psd/sparkling-brilliant-cut-diamond-gemstone_84443-75429.jpg", imageAlt: "Luxury diamond engagement ring"},
|
id: "1", name: "Eternal Diamond Solitaire Ring", price: "$8,500", variant: "18K White Gold", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfxZK4lAOn8BYIyA6deqAmAdFR/uploaded-1772999295113-ppb5pxhs.png", imageAlt: "Luxury diamond engagement ring"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "2", name: "Serene Gold Pendant Necklace", price: "$4,200", variant: "22K Yellow Gold", imageSrc: "http://img.b2bpic.net/free-psd/red-heart-pendant-luxurious-gold-garnet-jewel_191095-83698.jpg", imageAlt: "Fine jewelry gold pendant"},
|
id: "2", name: "Serene Gold Pendant Necklace", price: "$4,200", variant: "22K Yellow Gold", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfxZK4lAOn8BYIyA6deqAmAdFR/uploaded-1772999295114-iers8lde.png?_wi=1", imageAlt: "Fine jewelry gold pendant"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "3", name: "Luminous Diamond Stud Earrings", price: "$6,800", variant: "Platinum Setting", imageSrc: "http://img.b2bpic.net/free-photo/portrait-european-woman-wedding-dress-wearing-necklace-ring_343596-847.jpg", imageAlt: "Premium diamond earrings"},
|
id: "3", name: "Luminous Diamond Stud Earrings", price: "$6,800", variant: "Platinum Setting", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfxZK4lAOn8BYIyA6deqAmAdFR/uploaded-1772999295114-55nm6w97.png?_wi=1", imageAlt: "Premium diamond earrings"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
buttons={[{ text: "View All Collections", href: "#" }]}
|
buttons={[{ text: "View All Collections", href: "#" }]}
|
||||||
@@ -82,15 +85,15 @@ export default function LandingPage() {
|
|||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<InlineImageSplitTextAbout
|
<InlineImageSplitTextAbout
|
||||||
heading={[
|
heading={[
|
||||||
{ type: "text", content: "Timeless Elegance Meets" },
|
{ type: "text", content: "Where Luxury Heritage Meets" },
|
||||||
{
|
{
|
||||||
type: "image", src: "http://img.b2bpic.net/free-photo/creative-woman-is-holding-pliers-crystal-clear-quartz-it_613910-17314.jpg", alt: "Jewelry craftsmanship"},
|
type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfxZK4lAOn8BYIyA6deqAmAdFR/uploaded-1772999295113-ppb5pxhs.png", alt: "Pereira luxury jewelry craftsmanship"},
|
||||||
{ type: "text", content: "Master Craftsmanship" },
|
{ type: "text", content: "Artisanal Excellence" },
|
||||||
]}
|
]}
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Our Story", href: "#" },
|
{ text: "Our Legacy", href: "#" },
|
||||||
{ text: "Bespoke Services", href: "#" },
|
{ text: "Bespoke Collections", href: "#" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
@@ -107,9 +110,11 @@ export default function LandingPage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "1", value: "25+", title: "Years of Excellence", description: "Crafting jewelry with precision and passion", imageSrc: "http://img.b2bpic.net/free-photo/creative-woman-is-holding-pliers-crystal-clear-quartz-it_613910-17314.jpg", imageAlt: "Jewelry craftsmanship heritage"},
|
id: "1", value: "25+", title: "Years of Excellence", description: "Crafting jewelry with precision and passion", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfxZK4lAOn8BYIyA6deqAmAdFR/uploaded-1772999295114-iers8lde.png?_wi=2", imageAlt: "Jewelry craftsmanship heritage"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "2", value: "5,000+", title: "Satisfied Customers", description: "Trusted by collectors worldwide", imageSrc: "http://img.b2bpic.net/free-photo/top-view-aesthetic-golden-earrings-arrangement_23-2149846596.jpg?_wi=2", imageAlt: "Customer satisfaction"},
|
id: "2", value: "5,000+", title: "Satisfied Customers", description: "Trusted by collectors worldwide", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfxZK4lAOn8BYIyA6deqAmAdFR/uploaded-1772999295114-55nm6w97.png?_wi=2", imageAlt: "Customer satisfaction"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -118,13 +123,17 @@ export default function LandingPage() {
|
|||||||
<TestimonialCardTwelve
|
<TestimonialCardTwelve
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1", name: "Margaret Sterling", imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-working-warehouse_329181-12811.jpg", imageAlt: "Margaret Sterling"},
|
id: "1", name: "Margaret Sterling", imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-working-warehouse_329181-12811.jpg", imageAlt: "Margaret Sterling"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "2", name: "James Mitchell", imageSrc: "http://img.b2bpic.net/free-photo/guy-presenting-gift-box-attractive-happy-lady_23-2148016809.jpg", imageAlt: "James Mitchell"},
|
id: "2", name: "James Mitchell", imageSrc: "http://img.b2bpic.net/free-photo/guy-presenting-gift-box-attractive-happy-lady_23-2148016809.jpg", imageAlt: "James Mitchell"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "3", name: "Victoria Chambers", imageSrc: "http://img.b2bpic.net/free-photo/beauty-style-fashion-age-concept-close-up-portrait-positive-elegant-50-year-old-female-with-gray-hair-wrinkled-face-posing-against-white-brick-wall_344912-1852.jpg", imageAlt: "Victoria Chambers"},
|
id: "3", name: "Victoria Chambers", imageSrc: "http://img.b2bpic.net/free-photo/beauty-style-fashion-age-concept-close-up-portrait-positive-elegant-50-year-old-female-with-gray-hair-wrinkled-face-posing-against-white-brick-wall_344912-1852.jpg", imageAlt: "Victoria Chambers"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "4", name: "Richard Ashford", imageSrc: "http://img.b2bpic.net/free-photo/portrait-hairy-guy_158595-153.jpg", imageAlt: "Richard Ashford"},
|
id: "4", name: "Richard Ashford", imageSrc: "http://img.b2bpic.net/free-photo/portrait-hairy-guy_158595-153.jpg", imageAlt: "Richard Ashford"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
cardTitle="Trusted by thousands of discerning collectors and jewelry enthusiasts worldwide"
|
cardTitle="Trusted by thousands of discerning collectors and jewelry enthusiasts worldwide"
|
||||||
cardTag="See What They Say"
|
cardTag="See What They Say"
|
||||||
@@ -144,13 +153,17 @@ export default function LandingPage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "1", title: "How do you ensure jewelry authenticity?", content: "Every piece undergoes rigorous testing and comes with certification of authenticity. We work exclusively with certified gemologists and use advanced verification technology."},
|
id: "1", title: "How do you ensure jewelry authenticity?", content: "Every piece undergoes rigorous testing and comes with certification of authenticity. We work exclusively with certified gemologists and use advanced verification technology."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "2", title: "Do you offer custom jewelry design?", content: "Yes, our master artisans create bespoke pieces tailored to your vision. Schedule a consultation to discuss your custom jewelry design."},
|
id: "2", title: "Do you offer custom jewelry design?", content: "Yes, our master artisans create bespoke pieces tailored to your vision. Schedule a consultation to discuss your custom jewelry design."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "3", title: "What is your warranty policy?", content: "All jewelry purchases include a comprehensive 5-year warranty covering craftsmanship and materials. We also offer lifetime maintenance services."},
|
id: "3", title: "What is your warranty policy?", content: "All jewelry purchases include a comprehensive 5-year warranty covering craftsmanship and materials. We also offer lifetime maintenance services."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "4", title: "Can I resize or modify existing pieces?", content: "Absolutely. Our skilled craftspeople can resize, repair, or modify any jewelry piece to suit your needs perfectly."},
|
id: "4", title: "Can I resize or modify existing pieces?", content: "Absolutely. Our skilled craftspeople can resize, repair, or modify any jewelry piece to suit your needs perfectly."
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user