Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| dcc9f320ca | |||
| 161f62edc9 | |||
| 582f1fbd4b |
@@ -1,51 +1,17 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Antiqua | Premium Top-Shelf Liquor Collections", description: "Discover the world's most exclusive spirits. Rare single malts, vintage cognacs, and limited edition bottles curated for discerning collectors since 1985.", keywords: "top shelf liquor, rare spirits, premium whisky, vintage cognac, exclusive bottles, spirit collection, investment spirits", metadataBase: new URL("https://antiqua-spirits.com"),
|
title: "Allen Park Spirits & Wine | Premium Spirits Collection", description: "Discover premium spirits and fine wines at our Allen Park location. Expert curation, rare collections, and exclusive tastings."};
|
||||||
alternates: {
|
|
||||||
canonical: "https://antiqua-spirits.com"},
|
|
||||||
openGraph: {
|
|
||||||
title: "Antiqua | Premium Top-Shelf Liquor Collections", description: "Discover the world's most exclusive spirits. Rare single malts, vintage cognacs, and limited edition bottles curated for discerning collectors since 1985.", url: "https://antiqua-spirits.com", siteName: "Antiqua", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/closeup-empty-glass-bottles-with-corks-blurred-background_169016-20593.jpg", alt: "Premium spirits collection"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Antiqua | Premium Top-Shelf Liquor Collections", description: "Discover the world's most exclusive spirits curated for collectors.", images: ["http://img.b2bpic.net/free-photo/closeup-empty-glass-bottles-with-corks-blurred-background_169016-20593.jpg"],
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body>
|
||||||
<body
|
{children}
|
||||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
@@ -1414,7 +1380,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
134
src/app/page.tsx
134
src/app/page.tsx
@@ -10,7 +10,7 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
|||||||
import ContactText from '@/components/sections/contact/ContactText';
|
import ContactText from '@/components/sections/contact/ContactText';
|
||||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import { Award, Sparkles, Wine } from "lucide-react";
|
import { Award, Sparkles, Wine, MapPin, Clock, Phone } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -30,25 +30,25 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "hero" },
|
{ name: "Home", id: "hero" },
|
||||||
{ name: "Collections", id: "products" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Heritage", id: "about" },
|
{ name: "Selection", id: "products" },
|
||||||
{ name: "Reserve", id: "contact" },
|
{ name: "Why Us", id: "heritage" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "contact" },
|
||||||
]}
|
]}
|
||||||
brandName="Antiqua"
|
brandName="Allen Park Spirits"
|
||||||
bottomLeftText="Est. 1985 | Premium Spirits"
|
bottomLeftText="6660 Allen Rd, Allen Park, MI 48101"
|
||||||
bottomRightText="hello@antiqua.com"
|
bottomRightText="(313) 555-0147"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroLogoBillboardSplit
|
<HeroLogoBillboardSplit
|
||||||
logoText="ANTIQUA"
|
logoText="ALLEN PARK SPIRITS"
|
||||||
description="Discover the world's most exclusive spirits. From rare single malts to vintage cognacs, curated collections for the discerning collector."
|
description="Your premier destination for fine spirits, rare wines, and craft selections. Discover exceptional bottles and expert guidance in Allen Park, Michigan."
|
||||||
background={{ variant: "radial-gradient" }}
|
background={{ variant: "radial-gradient" }}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Explore Collection", href: "#products" },
|
{ text: "Explore Our Selection", href: "#products" },
|
||||||
{ text: "Schedule Tasting", href: "#contact" },
|
{ text: "Visit Us Today", href: "#contact" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
layoutOrder="default"
|
layoutOrder="default"
|
||||||
@@ -63,15 +63,15 @@ export default function LandingPage() {
|
|||||||
<MetricSplitMediaAbout
|
<MetricSplitMediaAbout
|
||||||
tag="Our Story"
|
tag="Our Story"
|
||||||
tagIcon={Award}
|
tagIcon={Award}
|
||||||
title="Four Decades of Excellence in Fine Spirits"
|
title="Quality Spirits Since Day One"
|
||||||
description="Since 1985, Antiqua has been the trusted source for the world's most exceptional spirits. We partner directly with distilleries and collectors to bring you rare, vintage, and exclusive bottles that tell stories of heritage, craftsmanship, and passion."
|
description="Located at 6660 Allen Road in Allen Park, we've built our reputation on offering carefully selected spirits and wines. From everyday favorites to rare finds, our knowledgeable team is here to help you discover your next favorite bottle."
|
||||||
metrics={[
|
metrics={[
|
||||||
{ value: "50+", title: "Countries Represented" },
|
{ value: "500+", title: "Spirits & Wines In Stock" },
|
||||||
{ value: "2000+", title: "Exclusive Bottles In Stock" },
|
{ value: "20+", title: "Years of Experience" },
|
||||||
]}
|
]}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/high-angle-man-writing-barrel_23-2149428796.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/high-angle-man-writing-barrel_23-2149428796.jpg"
|
||||||
imageAlt="Our heritage cellar with rare collections"
|
imageAlt="Our store with quality selection"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
metricsAnimation="slide-up"
|
metricsAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
@@ -79,20 +79,24 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="products" data-section="products">
|
<div id="products" data-section="products">
|
||||||
<ProductCardFour
|
<ProductCardFour
|
||||||
title="Curated Collections"
|
title="Featured Selection"
|
||||||
description="Hand-selected offerings from the world's most prestigious distilleries and vintages."
|
description="Hand-picked spirits and wines for every taste and occasion."
|
||||||
tag="Featured"
|
tag="In Stock"
|
||||||
tagIcon={Sparkles}
|
tagIcon={Sparkles}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "macallan-1965", name: "The Macallan 1965", price: "$45,000", variant: "Sherry Oak | Single Bottle", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-pouring-alchol-drink-bottel-glass-with-ice_181624-58326.jpg", imageAlt: "The Macallan 1965 rare single malt"},
|
id: "bourbon-selection", name: "Premium Bourbon Collection", price: "$35 - $120", variant: "Various Brands | In Stock", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-pouring-alchol-drink-bottel-glass-with-ice_181624-58326.jpg", imageAlt: "Premium bourbon selection"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "hennessy-paradis", name: "Hennessy Paradis Impérial", price: "$28,500", variant: "Cognac | Limited Edition", imageSrc: "http://img.b2bpic.net/free-photo/top-view-cognac-bottle-glass-with-blank-blackboatd_23-2148673778.jpg", imageAlt: "Hennessy Paradis Impérial cognac"},
|
id: "scotch-selection", name: "Single Malt Scotch", price: "$45 - $150", variant: "Imported | Premium Selection", imageSrc: "http://img.b2bpic.net/free-photo/top-view-cognac-bottle-glass-with-blank-blackboatd_23-2148673778.jpg", imageAlt: "Single malt scotch collection"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "dalmore-king-alexander", name: "Dalmore King Alexander III", price: "$32,000", variant: "Single Malt | 1263 Bottles", imageSrc: "http://img.b2bpic.net/free-photo/sotol-drink-still-life_23-2151018055.jpg", imageAlt: "Dalmore King Alexander III whisky"},
|
id: "wine-selection", name: "Curated Wine Selection", price: "$20 - $100", variant: "Red, White & Rosé | Various Regions", imageSrc: "http://img.b2bpic.net/free-photo/sotol-drink-still-life_23-2151018055.jpg", imageAlt: "Fine wine collection"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "petrus-1961", name: "Château Pichon Longueville", price: "$12,500", variant: "Bordeaux | Vintage 1961", imageSrc: "http://img.b2bpic.net/free-photo/glass-white-wine-bottle-wooden-box-cherries-blue-surface_114579-34170.jpg", imageAlt: "Château Pichon Longueville vintage wine"},
|
id: "craft-spirits", name: "Craft & Local Spirits", price: "$25 - $80", variant: "Local & Artisan | Unique Finds", imageSrc: "http://img.b2bpic.net/free-photo/glass-white-wine-bottle-wooden-box-cherries-blue-surface_114579-34170.jpg", imageAlt: "Craft spirits collection"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
@@ -102,52 +106,55 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="heritage" data-section="heritage">
|
<div id="heritage" data-section="heritage">
|
||||||
<FeatureCardSeven
|
<FeatureCardSeven
|
||||||
title="The Art of Collecting"
|
title="Why Choose Allen Park Spirits"
|
||||||
description="From selection to preservation, we guide you through every aspect of building an exceptional spirits collection."
|
description="We're committed to providing the best selection and service in the area."
|
||||||
tag="Expertise"
|
tag="Our Commitment"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
animationType="blur-reveal"
|
animationType="blur-reveal"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: 1,
|
id: 1,
|
||||||
title: "Expert Curation", description: "Our master sommeliers and collectors hand-select every bottle. Each acquisition is verified for authenticity and provenance with complete documentation.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-bartender-preparing-drink_23-2150494232.jpg"},
|
title: "Expert Staff", description: "Our knowledgeable team members are passionate about spirits and wines. We're here to help you find exactly what you're looking for and answer any questions.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-bartender-preparing-drink_23-2150494232.jpg"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: 2,
|
id: 2,
|
||||||
title: "Heritage Preservation", description: "State-of-the-art climate-controlled storage maintains the integrity of rare bottles. We ensure optimal conditions for aging and preservation.", imageSrc: "http://img.b2bpic.net/free-photo/agricultural-silos-building-exterior_146671-19367.jpg"},
|
title: "Quality Selection", description: "We carefully curate our collection to bring you quality options from around the world. Whether you're looking for everyday favorites or special occasion bottles, we have it.", imageSrc: "http://img.b2bpic.net/free-photo/agricultural-silos-building-exterior_146671-19367.jpg"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: 3,
|
id: 3,
|
||||||
title: "Exclusive Access", description: "Members receive early access to rare releases, private tastings, and invitations to exclusive collector events around the world.", imageSrc: "http://img.b2bpic.net/free-photo/tray-with-glasses-with-drinks-table_23-2148667928.jpg"},
|
title: "Community Focused", description: "We're more than just a store - we're part of the Allen Park community. Stop by for tastings, recommendations, and to connect with other spirits and wine enthusiasts.", imageSrc: "http://img.b2bpic.net/free-photo/tray-with-glasses-with-drinks-table_23-2148667928.jpg"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardTwo
|
<TestimonialCardTwo
|
||||||
title="Trusted by Collectors"
|
title="What Our Customers Say"
|
||||||
description="Hear from distinguished collectors and connoisseurs who trust Antiqua with their most precious acquisitions."
|
description="Hear from satisfied customers who visit Allen Park Spirits."
|
||||||
tag="Reviews"
|
tag="Customer Reviews"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1", name: "James Ashford", role: "Collector | London", testimonial: "Antiqua has been my trusted partner for over 15 years. Their expertise in sourcing authentic rare spirits is unmatched. Every transaction is handled with professionalism and discretion.", imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1674.jpg", icon: Wine,
|
id: "1", name: "Michael Thompson", role: "Regular Customer", testimonial: "Great selection and friendly staff. The team really knows their stuff and helped me find the perfect bottle for a special dinner.", imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1674.jpg", icon: Wine,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2", name: "Catherine Laurent", role: "Sommelier | Paris", testimonial: "As a sommelier, I recommend Antiqua to serious collectors. Their attention to detail, authentication processes, and customer service are exceptional. A true gem.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-woman-having-wine_23-2148454149.jpg", icon: Wine,
|
id: "2", name: "Sarah Martinez", role: "Local Resident", testimonial: "My go-to place for wine. The staff is always helpful and the prices are fair. Love supporting a local business!", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-woman-having-wine_23-2148454149.jpg", icon: Wine,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3", name: "Marcus Chen", role: "Investment Advisor | Singapore", testimonial: "Antiqua offers not just spirits but investment-grade bottles with proper documentation. Their market insights and authentication guarantee give me complete confidence.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg", icon: Wine,
|
id: "3", name: "David Chen", role: "Spirits Enthusiast", testimonial: "Allen Park Spirits has become my favorite spot. They consistently have unique finds and the team genuinely cares about customer satisfaction.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg", icon: Wine,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4", name: "Victoria Rothschild", role: "Estate Manager | Switzerland", testimonial: "For my collection acquisitions, Antiqua is my first call. Their curatorial eye and access to rare bottles are simply incomparable. Highly recommended.", imageSrc: "http://img.b2bpic.net/free-photo/female-employee-black-suit-looks-positive_114579-21797.jpg", icon: Wine,
|
id: "4", name: "Jennifer Williams", role: "Party Planner", testimonial: "Perfect for stocking up for events. They always have great suggestions and competitive pricing. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/female-employee-black-suit-looks-positive_114579-21797.jpg", icon: Wine,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "5", name: "Robert DeMarco", role: "Private Client | New York", testimonial: "Working with Antiqua transformed my collecting experience. They understand nuance, history, and value. Outstanding service from start to finish.", imageSrc: "http://img.b2bpic.net/free-photo/successful-confident-businessman-glasses-speaking-beige-wall_176420-129.jpg", icon: Wine,
|
id: "5", name: "Robert Anderson", role: "Wine Collector", testimonial: "Impressed by the range and quality. The staff knows how to help collectors find interesting bottles. Will definitely be back.", imageSrc: "http://img.b2bpic.net/free-photo/successful-confident-businessman-glasses-speaking-beige-wall_176420-129.jpg", icon: Wine,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "6", name: "Elisabeth Mueller", role: "Heritage Collector | Berlin", testimonial: "Authenticity and provenance are everything in this space. Antiqua delivers both flawlessly. They've become an integral part of my collection strategy.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-posing-with-cup-clipboard-white-background-high-quality-photo_114579-61150.jpg", icon: Wine,
|
id: "6", name: "Amanda Foster", role: "Local Business Owner", testimonial: "Great atmosphere and excellent service. They've helped me source spirits for my business. Couldn't ask for better support.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-posing-with-cup-clipboard-white-background-high-quality-photo_114579-61150.jpg", icon: Wine,
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -155,12 +162,13 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="socialproof" data-section="socialproof">
|
<div id="socialproof" data-section="socialproof">
|
||||||
<SocialProofOne
|
<SocialProofOne
|
||||||
title="Featured In"
|
title="Trusted by the Allen Park Community"
|
||||||
description="Trusted by prestigious publications and recognized by leading collector authorities worldwide."
|
description="Serving our neighbors and friends with quality spirits and exceptional service."
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
names={[
|
names={[
|
||||||
"Decanter Magazine", "Whisky Advocate", "Wine Spectator", "The Collector's Journal", "Fine Spirits Weekly", "Heritage Quarterly", "Luxury Living", "Connoisseur's Guide"]}
|
"Allen Park Residents", "Local Businesses", "Community Events", "Families & Friends", "Regular Customers", "Event Planners", "Wine Enthusiasts", "Spirits Collectors"
|
||||||
|
]}
|
||||||
speed={35}
|
speed={35}
|
||||||
showCard={true}
|
showCard={true}
|
||||||
/>
|
/>
|
||||||
@@ -168,55 +176,55 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactText
|
<ContactText
|
||||||
text="Ready to discover your next exceptional bottle? Contact our team of specialists to schedule a private consultation."
|
text="Visit us at 6660 Allen Road, Allen Park, MI 48101. Our friendly team is ready to help you find your next favorite spirits and wines. Open daily with extended hours for your convenience."
|
||||||
animationType="entrance-slide"
|
animationType="entrance-slide"
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Request Consultation", href: "#" },
|
{ text: "Call Us", href: "tel:(313)555-0147" },
|
||||||
{ text: "View Catalog", href: "#" },
|
{ text: "Get Directions", href: "https://maps.google.com/?q=6660+Allen+Rd+Allen+Park+MI+48101" },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBaseCard
|
<FooterBaseCard
|
||||||
logoText="Antiqua"
|
logoText="Allen Park Spirits"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Collections", items: [
|
title: "Visit Us", items: [
|
||||||
{ label: "Single Malts", href: "#products" },
|
{ label: "6660 Allen Road", href: "#" },
|
||||||
{ label: "Cognacs", href: "#products" },
|
{ label: "Allen Park, MI 48101", href: "#" },
|
||||||
{ label: "Rare Wines", href: "#products" },
|
{ label: "(313) 555-0147", href: "#" },
|
||||||
{ label: "Limited Edition", href: "#products" },
|
{ label: "Hours: Daily 10am-10pm", href: "#" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Selection", items: [
|
||||||
{ label: "About Us", href: "#about" },
|
{ label: "Spirits", href: "#products" },
|
||||||
{ label: "Heritage", href: "#heritage" },
|
{ label: "Wines", href: "#products" },
|
||||||
{ label: "Team", href: "#" },
|
{ label: "Beer & Craft", href: "#products" },
|
||||||
{ label: "Blog", href: "#" },
|
{ label: "Spirits & Wines", href: "#products" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Services", items: [
|
title: "About", items: [
|
||||||
{ label: "Consultations", href: "#contact" },
|
{ label: "Our Story", href: "#about" },
|
||||||
{ label: "Authentication", href: "#" },
|
{ label: "Why Choose Us", href: "#heritage" },
|
||||||
{ label: "Storage Solutions", href: "#" },
|
{ label: "Testimonials", href: "#testimonials" },
|
||||||
{ label: "Membership", href: "#" },
|
{ label: "Community", href: "#socialproof" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "Contact", href: "#contact" },
|
{ label: "Contact Us", href: "#contact" },
|
||||||
{ label: "FAQ", href: "#" },
|
{ label: "Directions", href: "https://maps.google.com/?q=6660+Allen+Rd+Allen+Park+MI+48101" },
|
||||||
{ label: "Privacy Policy", href: "#" },
|
{ label: "Privacy Policy", href: "#" },
|
||||||
{ label: "Terms of Service", href: "#" },
|
{ label: "Terms of Service", href: "#" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
copyrightText="© 2025 Antiqua Spirits. All rights reserved. Est. 1985."
|
copyrightText="© 2025 Allen Park Spirits. All rights reserved. Located at 6660 Allen Road, Allen Park, MI 48101."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
Reference in New Issue
Block a user