Merge version_1 into main #3
@@ -3,26 +3,23 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import ContactText from "@/components/sections/contact/ContactText";
|
||||
import FeatureCardSix from "@/components/sections/feature/FeatureCardSix";
|
||||
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
||||
import Link from "next/link";
|
||||
import { Mail, MapPin, Phone } from "lucide-react";
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="smallMedium"
|
||||
sizing="largeSizeMediumTitles"
|
||||
background="noise"
|
||||
cardStyle="subtle-shadow"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="extrabold"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
{/* Navbar */}
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
@@ -32,77 +29,40 @@ export default function ContactPage() {
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="VAULTED SOLES"
|
||||
button={{ text: "Visit Store", href: "#visit-vault" }}
|
||||
button={{
|
||||
text: "Visit Store", href: "#visit-vault"}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Main Contact CTA Section */}
|
||||
<div id="contact-cta" data-section="contact-cta">
|
||||
<div id="contact-inquiry" data-section="contact-inquiry">
|
||||
<ContactText
|
||||
text="Get in touch with the Vaulted Soles team. Whether you have questions about a specific pair, want to discuss a trade, or just want to chat about sneaker culture — we're here for you."
|
||||
text="Got questions? Want to reach out? We're here to help. Drop us a message and we'll get back to you as soon as possible."
|
||||
animationType="entrance-slide"
|
||||
buttons={[
|
||||
{ text: "Email Us", href: "mailto:contact@vaultedsoles.com" },
|
||||
{ text: "Visit in Store", href: "https://maps.google.com" },
|
||||
{ text: "Email Us", href: "mailto:info@vaultedsoles.com" },
|
||||
{ text: "Call the Store", href: "tel:+1234567890" },
|
||||
]}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Contact Methods Section */}
|
||||
<div id="contact-methods" data-section="contact-methods">
|
||||
<FeatureCardSix
|
||||
title="Ways to Reach Us"
|
||||
description="Multiple ways to connect with the Vaulted Soles crew and get the support you need."
|
||||
tag="Contact Info"
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
title: "Visit the Vault",
|
||||
description: "Stop by our Longview location to experience the shop in person, try on pairs, and chat with the team. Clean, organized, and welcoming.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/rack-full-shoes-modern-house_1268-14356.jpg?_wi=9",
|
||||
imageAlt: "Visit our store location",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Email or Call",
|
||||
description: "Have questions? Reach out via email or phone. We typically respond within 24 hours during business days. Direct communication for sourcing requests welcome.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/modern-sale-background-with-product-description_1361-1784.jpg?_wi=4",
|
||||
imageAlt: "Contact by email or phone",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Send a Sourcing Request",
|
||||
description: "Looking for a specific pair? Tell us the model, size, and condition you want, and we'll get back to you with options and pricing within 48 hours.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-posing-with-skateboard_23-2150583984.jpg?_wi=10",
|
||||
imageAlt: "Submit a sourcing request",
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Response Time Section */}
|
||||
<div id="response-times" data-section="response-times">
|
||||
<div id="contact-details" data-section="contact-details">
|
||||
<ContactText
|
||||
text="We typically respond to inquiries within 24 business hours. For urgent requests or high-priority sourcing, feel free to visit the store or call directly. We're always here to help you find your heat."
|
||||
animationType="blur-reveal"
|
||||
text="Visit us in Longview and experience the vault firsthand. We're open seven days a week, ready to help you find your next heat."
|
||||
animationType="entrance-slide"
|
||||
buttons={[
|
||||
{ text: "Back to Shop", href: "/shop" },
|
||||
{ text: "Get Directions", href: "https://maps.google.com" },
|
||||
{ text: "Store Hours", href: "#contact" },
|
||||
]}
|
||||
background={{ variant: "noise" }}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Footer */}
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
logoText="VAULTED SOLES"
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
@@ -145,8 +105,9 @@ export default function ContactPage() {
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="VAULTED SOLES"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
1428
src/app/layout.tsx
1428
src/app/layout.tsx
File diff suppressed because it is too large
Load Diff
190
src/app/page.tsx
190
src/app/page.tsx
@@ -11,21 +11,20 @@ import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"
|
||||
import Link from "next/link";
|
||||
import { Sparkles, Shield, Zap, Star, CheckCircle } from "lucide-react";
|
||||
|
||||
export default function HomePage() {
|
||||
export default function Home() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="smallMedium"
|
||||
sizing="largeSizeMediumTitles"
|
||||
background="noise"
|
||||
cardStyle="subtle-shadow"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="extrabold"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
{/* Navbar */}
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
@@ -35,17 +34,17 @@ export default function HomePage() {
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="VAULTED SOLES"
|
||||
button={{ text: "Visit Store", href: "#visit-vault" }}
|
||||
button={{
|
||||
text: "Visit Store", href: "#visit-vault"}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Hero Section */}
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
title="Unlock the Heat. Elevate Your Sole."
|
||||
description="Premium sneakers & streetwear curated for sneakerheads, families, and everyone who wants something better than the mall. 100% authentic, hard-to-find heat always in stock."
|
||||
background={{ variant: "noise" }}
|
||||
background={{ variant: "plain" }}
|
||||
kpis={[
|
||||
{ value: "5-Star", label: "Rated by Longview Locals" },
|
||||
{ value: "100%", label: "Authentic Guaranteed" },
|
||||
@@ -60,14 +59,13 @@ export default function HomePage() {
|
||||
{ text: "Visit the Store", href: "#visit-vault" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/modern-sale-background-with-product-description_1361-1784.jpg?_wi=1"
|
||||
imageAlt="Luxury sneaker vault showcase"
|
||||
mediaAnimation="blur-reveal"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/modern-sale-background-with-product-description_1361-1784.jpg"
|
||||
imageAlt="premium luxury sneaker jordans display"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Why Vaulted Soles Section */}
|
||||
<div id="why-vaulted" data-section="why-vaulted">
|
||||
<FeatureCardSix
|
||||
title="Why Your Soles Belong in the Vault"
|
||||
@@ -78,25 +76,13 @@ export default function HomePage() {
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
title: "Elite Selection",
|
||||
description: "Amazing inventory of Jordans, Dunks, and Yeezys. If you want it, we have it or we'll source it for you.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-posing-with-skateboard_23-2150583984.jpg?_wi=1",
|
||||
imageAlt: "Elite Jordan collection",
|
||||
},
|
||||
title: "Elite Selection", description: "Amazing inventory of Jordans, Dunks, and Yeezys. If you want it, we have it or we'll source it for you.", imageSrc: "http://img.b2bpic.net/free-photo/person-posing-with-skateboard_23-2150583984.jpg", imageAlt: "Elite Jordan collection"},
|
||||
{
|
||||
id: 2,
|
||||
title: "Phenomenal Service",
|
||||
description: "Professional, knowledgeable, and genuinely friendly. Juan and the team treat every customer like family.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/rack-full-shoes-modern-house_1268-14356.jpg?_wi=1",
|
||||
imageAlt: "Professional retail environment",
|
||||
},
|
||||
title: "Phenomenal Service", description: "Professional, knowledgeable, and genuinely friendly. Juan and the team treat every customer like family.", imageSrc: "http://img.b2bpic.net/free-photo/rack-full-shoes-modern-house_1268-14356.jpg", imageAlt: "Professional retail environment"},
|
||||
{
|
||||
id: 3,
|
||||
title: "100% Legit & Reliable",
|
||||
description: "Every pair verified authentic. Clean, welcoming environment. The most reliable sneaker spot in Longview.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fashion-shoes-sneaker_1203-8080.jpg?_wi=1",
|
||||
imageAlt: "Verified authentic sneakers",
|
||||
},
|
||||
title: "100% Legit & Reliable", description: "Every pair verified authentic. Clean, welcoming environment. The most reliable sneaker spot in Longview.", imageSrc: "http://img.b2bpic.net/free-photo/fashion-shoes-sneaker_1203-8080.jpg", imageAlt: "Verified authentic sneakers"},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
@@ -104,7 +90,6 @@ export default function HomePage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Featured Collections Section */}
|
||||
<div id="featured-collections" data-section="featured-collections">
|
||||
<ProductCardFour
|
||||
title="Shop the Vault"
|
||||
@@ -113,40 +98,16 @@ export default function HomePage() {
|
||||
tagIcon={Zap}
|
||||
products={[
|
||||
{
|
||||
id: "jordans",
|
||||
name: "Air Jordans",
|
||||
price: "From $120",
|
||||
variant: "Classics to Grails",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-posing-with-skateboard_23-2150583984.jpg?_wi=2",
|
||||
imageAlt: "Air Jordan collection",
|
||||
isFavorited: false,
|
||||
id: "jordans", name: "Air Jordans", price: "From $120", variant: "Classics to Grails", imageSrc: "http://img.b2bpic.net/free-photo/person-posing-with-skateboard_23-2150583984.jpg", imageAlt: "Air Jordan collection", isFavorited: false,
|
||||
},
|
||||
{
|
||||
id: "dunks",
|
||||
name: "Nike Dunks",
|
||||
price: "From $100",
|
||||
variant: "SBs & Lifestyle",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fashion-shoes-sneaker_1203-8080.jpg?_wi=2",
|
||||
imageAlt: "Nike Dunk collection",
|
||||
isFavorited: false,
|
||||
id: "dunks", name: "Nike Dunks", price: "From $100", variant: "SBs & Lifestyle", imageSrc: "http://img.b2bpic.net/free-photo/fashion-shoes-sneaker_1203-8080.jpg", imageAlt: "Nike Dunk collection", isFavorited: false,
|
||||
},
|
||||
{
|
||||
id: "yeezys",
|
||||
name: "Yeezys & Slides",
|
||||
price: "From $180",
|
||||
variant: "Comfort Meets Culture",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teenagers-sitting-together_23-2148105658.jpg?_wi=1",
|
||||
imageAlt: "Yeezy collection",
|
||||
isFavorited: false,
|
||||
id: "yeezys", name: "Yeezys & Slides", price: "From $180", variant: "Comfort Meets Culture", imageSrc: "http://img.b2bpic.net/free-photo/teenagers-sitting-together_23-2148105658.jpg", imageAlt: "Yeezy collection", isFavorited: false,
|
||||
},
|
||||
{
|
||||
id: "streetwear",
|
||||
name: "Streetwear",
|
||||
price: "From $45",
|
||||
variant: "Fits That Match",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/urban-cyclist-leaning-wall-low-view_23-2148828219.jpg?_wi=1",
|
||||
imageAlt: "Streetwear collection",
|
||||
isFavorited: false,
|
||||
id: "streetwear", name: "Streetwear", price: "From $45", variant: "Fits That Match", imageSrc: "http://img.b2bpic.net/free-photo/urban-cyclist-leaning-wall-low-view_23-2148828219.jpg", imageAlt: "Streetwear collection", isFavorited: false,
|
||||
},
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
@@ -158,7 +119,6 @@ export default function HomePage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Social Proof Section */}
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<TestimonialCardFive
|
||||
title="Loved by Longview"
|
||||
@@ -169,82 +129,21 @@ export default function HomePage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Jason R., Sneaker Collector",
|
||||
date: "Date: Recent",
|
||||
title: "Amazing selection of heat",
|
||||
quote: "Amazing selection of Jordans, Dunks, and Yeezys. If you want it, they got it. Best plug in town.",
|
||||
tag: "Elite Selection",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-confident-businessman_1098-21013.jpg",
|
||||
avatarAlt: "Jason R.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-posing-with-skateboard_23-2150583984.jpg?_wi=3",
|
||||
imageAlt: "Premium sneaker selection",
|
||||
},
|
||||
id: "1", name: "Jason R., Sneaker Collector", date: "Date: Recent", title: "Amazing selection of heat", quote: "Amazing selection of Jordans, Dunks, and Yeezys. If you want it, they got it. Best plug in town.", tag: "Elite Selection", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-confident-businessman_1098-21013.jpg", avatarAlt: "Jason R.", imageSrc: "http://img.b2bpic.net/free-photo/person-posing-with-skateboard_23-2150583984.jpg", imageAlt: "Premium sneaker selection"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Laura G., Parent",
|
||||
date: "Date: Recent",
|
||||
title: "Phenomenal service and expertise",
|
||||
quote: "Juan is very professional and his customer service is phenomenal. They know everything about sneakers and actually care about helping you find the right pair.",
|
||||
tag: "Customer Service",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/smiley-front-view-business-man_23-2148763836.jpg",
|
||||
avatarAlt: "Laura G.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/rack-full-shoes-modern-house_1268-14356.jpg?_wi=2",
|
||||
imageAlt: "Professional service",
|
||||
},
|
||||
id: "2", name: "Laura G., Parent", date: "Date: Recent", title: "Phenomenal service and expertise", quote: "Juan is very professional and his customer service is phenomenal. They know everything about sneakers and actually care about helping you find the right pair.", tag: "Customer Service", avatarSrc: "http://img.b2bpic.net/free-photo/smiley-front-view-business-man_23-2148763836.jpg", avatarAlt: "Laura G.", imageSrc: "http://img.b2bpic.net/free-photo/rack-full-shoes-modern-house_1268-14356.jpg", imageAlt: "Professional service"},
|
||||
{
|
||||
id: "3",
|
||||
name: "James J., Longtime Customer",
|
||||
date: "Date: Recent",
|
||||
title: "Hands down the most reliable",
|
||||
quote: "Hands down the most reliable place to shop. Knowledgeable, clean, and welcoming environment. You feel respected when you walk in.",
|
||||
tag: "Authenticity",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/businesswoman-working-warehouse_329181-12811.jpg",
|
||||
avatarAlt: "James J.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fashion-shoes-sneaker_1203-8080.jpg?_wi=3",
|
||||
imageAlt: "Verified authentic pairs",
|
||||
},
|
||||
id: "3", name: "James J., Longtime Customer", date: "Date: Recent", title: "Hands down the most reliable", quote: "Hands down the most reliable place to shop. Knowledgeable, clean, and welcoming environment. You feel respected when you walk in.", tag: "Authenticity", avatarSrc: "http://img.b2bpic.net/free-photo/businesswoman-working-warehouse_329181-12811.jpg", avatarAlt: "James J.", imageSrc: "http://img.b2bpic.net/free-photo/fashion-shoes-sneaker_1203-8080.jpg", imageAlt: "Verified authentic pairs"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Tone S., Reseller",
|
||||
date: "Date: Recent",
|
||||
title: "They source the impossible",
|
||||
quote: "They can even get you shoes not in their inventory. Tell them what you want, and they'll track it down. That's next-level service.",
|
||||
tag: "Sourcing Power",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-confident-businesswoman_107420-84872.jpg",
|
||||
avatarAlt: "Tone S.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teenagers-sitting-together_23-2148105658.jpg?_wi=2",
|
||||
imageAlt: "Exclusive sourcing capability",
|
||||
},
|
||||
id: "4", name: "Tone S., Reseller", date: "Date: Recent", title: "They source the impossible", quote: "They can even get you shoes not in their inventory. Tell them what you want, and they'll track it down. That's next-level service.", tag: "Sourcing Power", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-confident-businesswoman_107420-84872.jpg", avatarAlt: "Tone S.", imageSrc: "http://img.b2bpic.net/free-photo/teenagers-sitting-together_23-2148105658.jpg", imageAlt: "Exclusive sourcing capability"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Maria L., First-Time Buyer",
|
||||
date: "Date: Recent",
|
||||
title: "Great vibes and fair prices",
|
||||
quote: "Always great vibes, always professional. The prices are fair and they actually listen to what you're looking for.",
|
||||
tag: "Community",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/indoor-shot-attractive-caucasian-teenage-woman-with-long-dark-hair-sitting-desk-with-lots-textbooks_273609-1136.jpg",
|
||||
avatarAlt: "Maria L.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/urban-cyclist-leaning-wall-low-view_23-2148828219.jpg?_wi=2",
|
||||
imageAlt: "Community-driven experience",
|
||||
},
|
||||
id: "5", name: "Maria L., First-Time Buyer", date: "Date: Recent", title: "Great vibes and fair prices", quote: "Always great vibes, always professional. The prices are fair and they actually listen to what you're looking for.", tag: "Community", avatarSrc: "http://img.b2bpic.net/free-photo/indoor-shot-attractive-caucasian-teenage-woman-with-long-dark-hair-sitting-desk-with-lots-textbooks_273609-1136.jpg", avatarAlt: "Maria L.", imageSrc: "http://img.b2bpic.net/free-photo/urban-cyclist-leaning-wall-low-view_23-2148828219.jpg", imageAlt: "Community-driven experience"},
|
||||
{
|
||||
id: "6",
|
||||
name: "Derek M., Regular",
|
||||
date: "Date: Recent",
|
||||
title: "My go-to place",
|
||||
quote: "Best streetwear in Longview. Trustworthy and legit people. My go-to place for everything.",
|
||||
tag: "Top Rated",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/man-portrait-posing-loft-modern-space_158595-5367.jpg",
|
||||
avatarAlt: "Derek M.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/rack-full-shoes-modern-house_1268-14356.jpg?_wi=3",
|
||||
imageAlt: "Trusted destination",
|
||||
},
|
||||
id: "6", name: "Derek M., Regular", date: "Date: Recent", title: "My go-to place", quote: "Best streetwear in Longview. Trustworthy and legit people. My go-to place for everything.", tag: "Top Rated", avatarSrc: "http://img.b2bpic.net/free-photo/man-portrait-posing-loft-modern-space_158595-5367.jpg", avatarAlt: "Derek M.", imageSrc: "http://img.b2bpic.net/free-photo/rack-full-shoes-modern-house_1268-14356.jpg", imageAlt: "Trusted destination"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* How It Works Section */}
|
||||
<div id="how-it-works" data-section="how-it-works">
|
||||
<FeatureCardSix
|
||||
title="Your Plug, Simplified"
|
||||
@@ -254,25 +153,13 @@ export default function HomePage() {
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
title: "Shop Online or Pull Up",
|
||||
description: "Browse our latest drops on the site or visit our Longview store in person. We're here to help you find what you need.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/modern-sale-background-with-product-description_1361-1784.jpg?_wi=2",
|
||||
imageAlt: "Shop online or in-store",
|
||||
},
|
||||
title: "Shop Online or Pull Up", description: "Browse our latest drops on the site or visit our Longview store in person. We're here to help you find what you need.", imageSrc: "http://img.b2bpic.net/free-vector/modern-sale-background-with-product-description_1361-1784.jpg", imageAlt: "Shop online or in-store"},
|
||||
{
|
||||
id: 2,
|
||||
title: "Find Your Pair (or Tell Us Your Grail)",
|
||||
description: "See something you like? Great. Can't find it? No problem. Tell us your size, model, and budget, and we'll source it for you.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-posing-with-skateboard_23-2150583984.jpg?_wi=4",
|
||||
imageAlt: "Expert curation and sourcing",
|
||||
},
|
||||
title: "Find Your Pair (or Tell Us Your Grail)", description: "See something you like? Great. Can't find it? No problem. Tell us your size, model, and budget, and we'll source it for you.", imageSrc: "http://img.b2bpic.net/free-photo/person-posing-with-skateboard_23-2150583984.jpg", imageAlt: "Expert curation and sourcing"},
|
||||
{
|
||||
id: 3,
|
||||
title: "Walk Out or Ship Out",
|
||||
description: "Pick up in-store or choose your preferred shipping carrier at checkout. We make it convenient either way.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/rack-full-shoes-modern-house_1268-14356.jpg?_wi=4",
|
||||
imageAlt: "Flexible fulfillment options",
|
||||
},
|
||||
title: "Walk Out or Ship Out", description: "Pick up in-store or choose your preferred shipping carrier at checkout. We make it convenient either way.", imageSrc: "http://img.b2bpic.net/free-photo/rack-full-shoes-modern-house_1268-14356.jpg", imageAlt: "Flexible fulfillment options"},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
@@ -280,35 +167,31 @@ export default function HomePage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Visit the Vault Section */}
|
||||
<div id="visit-vault" data-section="visit-vault">
|
||||
<ContactText
|
||||
text="Experience the vault in person. A clean, organized, welcoming shop where sneakerheads, parents, and newcomers all feel at home. Try on pairs, get styling help, and leave with something you won't find at the mall."
|
||||
animationType="entrance-slide"
|
||||
buttons={[
|
||||
{ text: "Get Directions", href: "https://maps.google.com" },
|
||||
{ text: "Store Hours", href: "/contact" },
|
||||
{ text: "Store Hours", href: "#contact" },
|
||||
]}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Email Capture Section */}
|
||||
<div id="email-capture" data-section="email-capture">
|
||||
<ContactText
|
||||
text="Stay locked in. Be first to know about drops, restocks, and exclusive in-store events. Join the Vault community."
|
||||
animationType="blur-reveal"
|
||||
animationType="entrance-slide"
|
||||
buttons={[{ text: "Join the Vault", href: "#" }]}
|
||||
background={{ variant: "noise" }}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Footer */}
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
logoText="VAULTED SOLES"
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
@@ -351,8 +234,9 @@ export default function HomePage() {
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="VAULTED SOLES"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user