Compare commits
4 Commits
version_10
...
version_11
| Author | SHA1 | Date | |
|---|---|---|---|
| 406e41b7f7 | |||
| 2cb31d975f | |||
| 081492fbf9 | |||
| 6318d5b018 |
@@ -9,7 +9,7 @@ import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwent
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import TeamCardOne from '@/components/sections/team/TeamCardOne';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
|
||||
@@ -33,7 +33,7 @@ export default function LandingPage() {
|
||||
navItems={[
|
||||
{ name: "Home", id: "#hero" },
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Collection", id: "#products" },
|
||||
{ name: "Artists", id: "#products" },
|
||||
{ name: "Contact", id: "#contact" }
|
||||
]}
|
||||
brandName="Sinister Sisters"
|
||||
@@ -88,21 +88,20 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardTwo
|
||||
<TeamCardOne
|
||||
carouselMode="buttons"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{ id: "p1", brand: "Sinister Sisters", name: "Victorian Candlestick", price: "$120.00", rating: 5, reviewCount: "12 reviews", imageSrc: "http://img.b2bpic.net/free-photo/vintage-chandelier-two-positions-white-background-studio-photo-vintage-retro-old-fashioned-style-candle-holder_482257-33029.jpg", imageAlt: "Victorian Candlestick" },
|
||||
{ id: "p2", brand: "Sinister Sisters", name: "Velvet Raven Cushion", price: "$45.00", rating: 5, reviewCount: "8 reviews", imageSrc: "http://img.b2bpic.net/free-photo/garlic-with-twigs-near-frame_23-2147694973.jpg", imageAlt: "Velvet Raven Cushion" },
|
||||
{ id: "p3", brand: "Sinister Sisters", name: "Ornate Bone Frame", price: "$80.00", rating: 5, reviewCount: "15 reviews", imageSrc: "http://img.b2bpic.net/free-vector/rectangular-ornamental-frame-black-background_1115-649.jpg", imageAlt: "Ornate Bone Frame" },
|
||||
{ id: "p4", brand: "Sinister Sisters", name: "Glazed Crypt Jar", price: "$60.00", rating: 5, reviewCount: "7 reviews", imageSrc: "http://img.b2bpic.net/free-photo/vintage-antique-ancient-kettle-marble-background_114579-46793.jpg", imageAlt: "Glazed Crypt Jar" },
|
||||
{ id: "p5", brand: "Sinister Sisters", name: "Obsidian Figurine", price: "$95.00", rating: 5, reviewCount: "10 reviews", imageSrc: "http://img.b2bpic.net/free-photo/witch-hand-with-long-nails_23-2147680165.jpg", imageAlt: "Obsidian Figurine" }
|
||||
members={[
|
||||
{ id: "artist1", name: "Evelyn Thorne", role: "Gothic Sculptor", imageSrc: "https://img.b2bpic.net/free-photo/evelyn-thorne-portrait.jpg?_wi=1", imageAlt: "Portrait of Evelyn Thorne" },
|
||||
{ id: "artist2", name: "Victor Blackwood", role: "Mystic Painter", imageSrc: "https://img.b2bpic.net/free-photo/victor-blackwood-portrait.jpg?_wi=1", imageAlt: "Portrait of Victor Blackwood" },
|
||||
{ id: "artist3", name: "Morgana Le Fey", role: "Enchanted Jeweler", imageSrc: "https://img.b2bpic.net/free-photo/morgana-le-fey-portrait.jpg?_wi=1", imageAlt: "Portrait of Morgana Le Fey" },
|
||||
{ id: "artist4", name: "Dorian Grey", role: "Curio Crafter", imageSrc: "https://img.b2bpic.net/free-photo/dorian-grey-portrait.jpg?_wi=1", imageAlt: "Portrait of Dorian Grey" }
|
||||
]}
|
||||
title="Curated Collections"
|
||||
description="Explore our current selection of rare finds and bespoke gothic creations. Shop our curated dark decor pieces to find your next statement piece."
|
||||
title="Featured Artists of the Sanctuary"
|
||||
description="Discover the visionary artisans who imbue our collections with their unique dark luxury aesthetics."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -113,10 +112,10 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
testimonials={[
|
||||
{ id: "t1", name: "Evelyn Thorne", role: "Collector", company: "Dark Aesthetic", rating: 5, imageSrc: "https://img.b2bpic.net/free-photo/evelyn-thorne-portrait.jpg", imageAlt: "Evelyn Thorne portrait" },
|
||||
{ id: "t2", name: "Victor Blackwood", role: "Architect", company: "Blackwood Studio", rating: 5, imageSrc: "https://img.b2bpic.net/free-photo/victor-blackwood-portrait.jpg", imageAlt: "Victor Blackwood portrait" },
|
||||
{ id: "t3", name: "Morgana Le Fey", role: "Curator", company: "Mystic Arts", rating: 5, imageSrc: "https://img.b2bpic.net/free-photo/morgana-le-fey-portrait.jpg", imageAlt: "Morgana Le Fey portrait" },
|
||||
{ id: "t4", name: "Dorian Grey", role: "Designer", company: "Grey Interiors", rating: 5, imageSrc: "https://img.b2bpic.net/free-photo/dorian-grey-portrait.jpg", imageAlt: "Dorian Grey portrait" },
|
||||
{ id: "t1", name: "Evelyn Thorne", role: "Collector", company: "Dark Aesthetic", rating: 5, imageSrc: "https://img.b2bpic.net/free-photo/evelyn-thorne-portrait.jpg?_wi=2", imageAlt: "Evelyn Thorne portrait" },
|
||||
{ id: "t2", name: "Victor Blackwood", role: "Architect", company: "Blackwood Studio", rating: 5, imageSrc: "https://img.b2bpic.net/free-photo/victor-blackwood-portrait.jpg?_wi=2", imageAlt: "Victor Blackwood portrait" },
|
||||
{ id: "t3", name: "Morgana Le Fey", role: "Curator", company: "Mystic Arts", rating: 5, imageSrc: "https://img.b2bpic.net/free-photo/morgana-le-fey-portrait.jpg?_wi=2", imageAlt: "Morgana Le Fey portrait" },
|
||||
{ id: "t4", name: "Dorian Grey", role: "Designer", company: "Grey Interiors", rating: 5, imageSrc: "https://img.b2bpic.net/free-photo/dorian-grey-portrait.jpg?_wi=2", imageAlt: "Dorian Grey portrait" },
|
||||
{ id: "t5", name: "Lenore Raven", role: "Collector", company: "Shadow Lane", rating: 5, imageSrc: "https://img.b2bpic.net/free-photo/lenore-raven-portrait.jpg", imageAlt: "Lenore Raven portrait" }
|
||||
]}
|
||||
title="Voices from the Shadows"
|
||||
@@ -129,7 +128,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{ id: "q1", title: "Do you ship items internationally?", content: "Yes, we carefully pack and ship select items worldwide." },
|
||||
{ id: "q1", title: "Do you ship items internationally?", content: "We currently do not ship items, largely due to logistical issues. " },
|
||||
{ id: "q2", title: "Are your antiques authentic?", content: "Absolutely. Every piece undergoes rigorous verification." },
|
||||
{ id: "q3", title: "Can I visit your physical location?", content: "We invite you to step into the sanctuary anytime during our operating hours." },
|
||||
{ id: "q4", title: "Do you accept custom commissions?", content: "Our artisans do accept limited, select commissions periodically." },
|
||||
@@ -146,7 +145,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
text="The sanctuary awaits. Visit us or reach out for inquiries about our current collections and bespoke services."
|
||||
buttons={[{ text: "Email Our Curators", href: "#" }]}
|
||||
buttons={[{ text: "Email Our Curators", href: "#" }] }
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user