Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 26660cf93e | |||
| c85041f185 | |||
| 015833e466 | |||
| 395f88af8a | |||
| 958392dfd9 | |||
| 8b1ac0f706 |
@@ -7,9 +7,8 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
|
||||
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import { Disc3, Music, Award, Star, Mail } from "lucide-react";
|
||||
import { Disc3, Music, Award, Star } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -32,8 +31,7 @@ export default function LandingPage() {
|
||||
{ name: "Showcase", id: "showcase" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Why Us", id: "features" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
{ name: "Reviews", id: "testimonials" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -114,11 +112,11 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
id: "1", title: "Expert Curation", author: "Handpicked Selection", description: "Every record in our collection is personally selected and verified. We focus on quality over quantity, ensuring you find real gems.", tags: ["Verified", "Quality"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-doing-digital-detox-home_52683-100884.jpg?_wi=1", imageAlt: "Expert curation"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vinyl-records-collection_23-2149726750.jpg", imageAlt: "Vinyl records collection"
|
||||
},
|
||||
{
|
||||
id: "2", title: "Fair Pricing & Transparency", author: "Clear Grading Standards", description: "We use Discogs' standardized grading system so you know exactly what you're getting. No surprises, just honest business.", tags: ["Transparent", "Fair Pricing"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-doing-digital-detox-home_52683-100884.jpg?_wi=2", imageAlt: "Transparent pricing"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-vinyl-record-player_23-2149726845.jpg", imageAlt: "Vinyl record player close-up"
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
@@ -140,16 +138,20 @@ export default function LandingPage() {
|
||||
tagAnimation="slide-up"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Marcus Johnson", role: "Collector", company: "Vinyl Enthusiast", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-handsome-guy-wearing-green-shirt_141793-122624.jpg", imageAlt: "Marcus Johnson"
|
||||
id: "1", name: "Marcus Johnson", role: "Collector", company: "Vinyl Enthusiast", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-handsome-guy-wearing-green-shirt_141793-122624.jpg", imageAlt: "Marcus Johnson"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Sarah Chen", role: "Music Producer", company: "Studio Owner", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-african-american-man-posing-library_74855-1619.jpg", imageAlt: "Sarah Chen"
|
||||
id: "2", name: "Sarah Chen", role: "Music Producer", company: "Studio Owner", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-african-american-man-posing-library_74855-1619.jpg", imageAlt: "Sarah Chen"
|
||||
},
|
||||
{
|
||||
id: "3", name: "David Rodriguez", role: "DJ", company: "Radio Host", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-teenager-isolated_23-2149158194.jpg", imageAlt: "David Rodriguez"
|
||||
id: "3", name: "David Rodriguez", role: "DJ", company: "Radio Host", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-teenager-isolated_23-2149158194.jpg", imageAlt: "David Rodriguez"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Emily Watson", role: "Archivist", company: "Music Historian", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-cheerful-guy-glasses-expressing-approval_1262-14240.jpg", imageAlt: "Emily Watson"
|
||||
id: "4", name: "Emily Watson", role: "Archivist", company: "Music Historian", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-cheerful-guy-glasses-expressing-approval_1262-14240.jpg", imageAlt: "Emily Watson"
|
||||
}
|
||||
]}
|
||||
kpiItems={[
|
||||
@@ -163,21 +165,6 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
tag="Newsletter"
|
||||
title="Join the Vinyl Community"
|
||||
description="Get notified about rare finds, new arrivals, and exclusive updates. Subscribe to stay connected with Noma Vinyl."
|
||||
tagIcon={Mail}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
useInvertedBackground={true}
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Subscribe"
|
||||
termsText="We respect your privacy. Unsubscribe anytime."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
logoText="Noma Vinyl"
|
||||
@@ -192,8 +179,7 @@ export default function LandingPage() {
|
||||
{
|
||||
items: [
|
||||
{ label: "Why Us", href: "#features" },
|
||||
{ label: "Reviews", href: "#testimonials" },
|
||||
{ label: "Newsletter", href: "#contact" }
|
||||
{ label: "Reviews", href: "#testimonials" }
|
||||
]
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user