|
|
|
|
@@ -2,87 +2,98 @@
|
|
|
|
|
|
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
|
|
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
|
|
|
|
import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel';
|
|
|
|
|
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
|
|
|
|
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
|
|
|
|
|
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
|
|
|
|
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
|
|
|
|
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
|
|
|
|
import { Fish } from "lucide-react";
|
|
|
|
|
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
|
|
|
|
|
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
|
|
|
|
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
|
|
|
|
|
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
|
|
|
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
|
|
|
|
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
|
|
|
|
|
|
|
|
|
const navItems = [{ name: "Home", id: "/" }];
|
|
|
|
|
|
|
|
|
|
export default function Page() {
|
|
|
|
|
return (
|
|
|
|
|
<ThemeProvider
|
|
|
|
|
defaultButtonVariant="text-stagger"
|
|
|
|
|
defaultTextAnimation="entrance-slide"
|
|
|
|
|
borderRadius="rounded"
|
|
|
|
|
defaultButtonVariant="hover-bubble"
|
|
|
|
|
defaultTextAnimation="reveal-blur"
|
|
|
|
|
borderRadius="soft"
|
|
|
|
|
contentWidth="medium"
|
|
|
|
|
sizing="medium"
|
|
|
|
|
background="circleGradient"
|
|
|
|
|
background="noise"
|
|
|
|
|
cardStyle="glass-elevated"
|
|
|
|
|
primaryButtonStyle="gradient"
|
|
|
|
|
secondaryButtonStyle="glass"
|
|
|
|
|
headingFontWeight="normal"
|
|
|
|
|
headingFontWeight="semibold"
|
|
|
|
|
>
|
|
|
|
|
<div id="nav" data-section="nav">
|
|
|
|
|
<NavbarStyleCentered navItems={navItems} brandName="Top Table" />
|
|
|
|
|
</div>
|
|
|
|
|
<div id="hero" data-section="hero">
|
|
|
|
|
<HeroSplitDoubleCarousel
|
|
|
|
|
<HeroBillboardGallery
|
|
|
|
|
title="Proper Fish & Chips"
|
|
|
|
|
description="Done Right."
|
|
|
|
|
background={{ variant: "plain" }}
|
|
|
|
|
leftCarouselItems={[{ imageSrc: "https://images.unsplash.com/photo-1579684385327-38686e920653" }]}
|
|
|
|
|
rightCarouselItems={[{ imageSrc: "https://images.unsplash.com/photo-1579684385327-38686e920653" }]}
|
|
|
|
|
description="Traditional recipes, locally sourced ingredients, and a commitment to quality that you can taste in every bite."
|
|
|
|
|
background={{ variant: "sparkles-gradient" }}
|
|
|
|
|
mediaItems={[
|
|
|
|
|
{ imageSrc: "https://images.unsplash.com/photo-1579684385327-38686e920653?w=800&h=600" },
|
|
|
|
|
{ imageSrc: "https://images.unsplash.com/photo-1579684385327-38686e920653?w=800&h=600" },
|
|
|
|
|
{ imageSrc: "https://images.unsplash.com/photo-1579684385327-38686e920653?w=800&h=600" }
|
|
|
|
|
]}
|
|
|
|
|
mediaAnimation="slide-up"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="about" data-section="about">
|
|
|
|
|
<TestimonialAboutCard
|
|
|
|
|
tag="Our Story"
|
|
|
|
|
title="Quality First"
|
|
|
|
|
description="We take pride in our process."
|
|
|
|
|
subdescription="Fresh ingredients, every single day."
|
|
|
|
|
icon={Fish}
|
|
|
|
|
imageSrc="https://images.unsplash.com/photo-1579684385327-38686e920653"
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
<MetricSplitMediaAbout
|
|
|
|
|
title="The Top Table Standard"
|
|
|
|
|
description="We refuse to cut corners. From our hand-cut potatoes to the sustainable catch of the day, our focus is on bringing you an authentic, premium experience."
|
|
|
|
|
metrics={[{ value: "15+", title: "Years Experience" }, { value: "100%", title: "Local Sourcing" }, { value: "5000+", title: "Happy Customers" }]}
|
|
|
|
|
imageSrc="https://images.unsplash.com/photo-1579684385327-38686e920653?w=800&h=600"
|
|
|
|
|
useInvertedBackground={true}
|
|
|
|
|
tag="Our Heritage"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="features" data-section="features">
|
|
|
|
|
<FeatureCardSixteen
|
|
|
|
|
title="Why Choose Us"
|
|
|
|
|
description="We prioritize quality in every dish."
|
|
|
|
|
negativeCard={{ items: ["Frozen Fish", "Old Oil"] }}
|
|
|
|
|
positiveCard={{ items: ["Freshly Caught", "Clean Oil"] }}
|
|
|
|
|
<FeatureCardOne
|
|
|
|
|
title="Quality You Can Trust"
|
|
|
|
|
description="Why we are the local favorite."
|
|
|
|
|
features={[
|
|
|
|
|
{ title: "Sustainable Catch", description: "Only the finest, responsibly sourced fish.", imageSrc: "https://images.unsplash.com/photo-1579684385327-38686e920653?w=400&h=300" },
|
|
|
|
|
{ title: "Fresh Cut Daily", description: "Potatoes prepared in-house, every morning.", imageSrc: "https://images.unsplash.com/photo-1579684385327-38686e920653?w=400&h=300" },
|
|
|
|
|
{ title: "Classic Technique", description: "Traditional frying methods for the perfect crunch.", imageSrc: "https://images.unsplash.com/photo-1579684385327-38686e920653?w=400&h=300" }
|
|
|
|
|
]}
|
|
|
|
|
animationType="slide-up"
|
|
|
|
|
textboxLayout="default"
|
|
|
|
|
textboxLayout="split"
|
|
|
|
|
gridVariant="three-columns-all-equal-width"
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
|
|
|
<TestimonialCardTen
|
|
|
|
|
title="Customer Reviews"
|
|
|
|
|
description="See what locals say."
|
|
|
|
|
<TestimonialCardSixteen
|
|
|
|
|
title="Community Favorites"
|
|
|
|
|
description="Hear from our regular patrons about what makes Top Table a local staple."
|
|
|
|
|
kpiItems={[{ value: "4.9", label: "Average Rating" }, { value: "98%", label: "Return Rate" }, { value: "12k", label: "Meals Served" }]}
|
|
|
|
|
testimonials={[
|
|
|
|
|
{ id: "1", name: "Sarah Jenkins", role: "Local Resident", company: "City News", rating: 5, imageSrc: "https://images.unsplash.com/photo-1579684385327-38686e920653?w=100&h=100" }
|
|
|
|
|
]}
|
|
|
|
|
animationType="blur-reveal"
|
|
|
|
|
textboxLayout="split"
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
testimonials={[{ id: "1", title: "Excellent", quote: "Best fish in town!", name: "John Doe", role: "Local" }]}
|
|
|
|
|
useInvertedBackground={true}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="visit" data-section="visit">
|
|
|
|
|
<ContactCTA
|
|
|
|
|
tag="Visit Us"
|
|
|
|
|
title="Ready for a bite?"
|
|
|
|
|
description="Visit our store today."
|
|
|
|
|
buttons={[{ text: "Get Directions", href: "#" }]}
|
|
|
|
|
background={{ variant: "plain" }}
|
|
|
|
|
<ContactSplitForm
|
|
|
|
|
title="Get in Touch"
|
|
|
|
|
description="Have a special order or feedback? We'd love to hear from you."
|
|
|
|
|
inputs={[{ name: "name", type: "text", placeholder: "Your Name" }, { name: "email", type: "email", placeholder: "Your Email" }]}
|
|
|
|
|
textarea={{ name: "message", placeholder: "How can we help?" }}
|
|
|
|
|
imageSrc="https://images.unsplash.com/photo-1579684385327-38686e920653?w=800&h=600"
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="footer" data-section="footer">
|
|
|
|
|
<FooterBaseCard
|
|
|
|
|
<FooterMedia
|
|
|
|
|
logoText="Top Table"
|
|
|
|
|
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }] }]}
|
|
|
|
|
imageSrc="https://images.unsplash.com/photo-1579684385327-38686e920653?w=800&h=600"
|
|
|
|
|
columns={[{ title: "Navigation", items: [{ label: "Home", href: "/" }] }]}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</ThemeProvider>
|
|
|
|
|
|