225 lines
11 KiB
TypeScript
225 lines
11 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
|
import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel";
|
|
import FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
|
|
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
|
|
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
|
|
import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
|
|
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
|
import FooterCard from "@/components/sections/footer/FooterCard";
|
|
import { Sparkles, ChefHat, Star, Award, Users, Heart, MapPin, Facebook, Instagram, Phone } from "lucide-react";
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="hover-bubble"
|
|
defaultTextAnimation="background-highlight"
|
|
borderRadius="rounded"
|
|
contentWidth="compact"
|
|
sizing="mediumLargeSizeLargeTitles"
|
|
background="grid"
|
|
cardStyle="gradient-radial"
|
|
primaryButtonStyle="shadow"
|
|
secondaryButtonStyle="radial-glow"
|
|
headingFontWeight="bold"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingInline
|
|
brandName="The Huntsman Tavern"
|
|
navItems={[
|
|
{ name: "Menu", id: "menu" },
|
|
{ name: "Atmosphere", id: "atmosphere" },
|
|
{ name: "Reservations", id: "reservations" },
|
|
{ name: "Location", id: "location" },
|
|
]}
|
|
button={{
|
|
text: "Reserve Your Table", href: "reservations"
|
|
}}
|
|
animateOnLoad={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroBillboardCarousel
|
|
title="Ellensburg's Most Refined Tavern Experience"
|
|
description="Prime rib, handcrafted whiskey, and exceptional hospitality meet Pacific Northwest lodge luxury. Every evening at The Huntsman is unforgettable."
|
|
tag="Fine Dining"
|
|
tagIcon={Sparkles}
|
|
tagAnimation="slide-up"
|
|
background={{ variant: "gradient-bars" }}
|
|
buttons={[
|
|
{ text: "Reserve Your Table", href: "reservations" },
|
|
{ text: "Call Us", href: "tel:+1-509-925-1234" },
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
mediaItems={[
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/ribeye-steak-teriyaki-sauce-with-glass-burgundy_114579-2160.jpg", imageAlt: "Upscale steakhouse dining room"
|
|
},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-cuts-fried-meat-ribs-cutting-board_141793-12499.jpg?_wi=1", imageAlt: "Signature prime rib plating"
|
|
},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/wine-cellar-with-old-wine-barrels_23-2149428781.jpg?_wi=1", imageAlt: "Premium whiskey collection"
|
|
},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/ideal-objects-prepare-cocktails_23-2148176790.jpg?_wi=1", imageAlt: "Handcrafted cocktail"
|
|
},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/handsome-guy-hugging-young-cheerful-lady-table_23-2148016786.jpg", imageAlt: "Intimate dining ambiance"
|
|
},
|
|
]}
|
|
ariaLabel="Hero section - The Huntsman Tavern fine dining"
|
|
/>
|
|
</div>
|
|
|
|
<div id="menu" data-section="menu">
|
|
<FeatureCardEight
|
|
title="Our Signature Offerings"
|
|
description="Carefully curated selections celebrating prime beef, artisanal spirits, and Pacific Northwest flavors."
|
|
tag="Menu Highlights"
|
|
tagIcon={ChefHat}
|
|
tagAnimation="slide-up"
|
|
features={[
|
|
{
|
|
id: 1,
|
|
title: "Prime Rib", description: "Hand-cut, bone-in prime rib with herb-infused crust, perfectly aged and seared to your preference", imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-cuts-fried-meat-ribs-cutting-board_141793-12499.jpg?_wi=2", imageAlt: "Premium prime rib"
|
|
},
|
|
{
|
|
id: 2,
|
|
title: "Handcrafted Whiskey", description: "Curated selection of bourbon, rye, and single-malt scotch, featuring rare small-batch releases", imageSrc: "http://img.b2bpic.net/free-photo/wine-cellar-with-old-wine-barrels_23-2149428781.jpg?_wi=2", imageAlt: "Whiskey selection"
|
|
},
|
|
{
|
|
id: 3,
|
|
title: "Craft Cocktails", description: "Expert mixology combining premium spirits, house-made syrups, and artisanal techniques", imageSrc: "http://img.b2bpic.net/free-photo/ideal-objects-prepare-cocktails_23-2148176790.jpg?_wi=2", imageAlt: "Craft cocktail"
|
|
},
|
|
]}
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
buttonAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="atmosphere" data-section="atmosphere">
|
|
<InlineImageSplitTextAbout
|
|
heading={[
|
|
{
|
|
type: "text", content: "Dark wood, leather, and brass come together in a"
|
|
},
|
|
{
|
|
type: "text", content: "Pacific Northwest lodge atmosphere"
|
|
},
|
|
{
|
|
type: "text", content: "where refined dining meets genuine hospitality."
|
|
},
|
|
]}
|
|
useInvertedBackground={false}
|
|
buttons={[
|
|
{ text: "Explore Our Space", href: "#gallery" },
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardTen
|
|
title="Trusted by Locals and Visitors"
|
|
description="Hear from our guests about their unforgettable evenings at The Huntsman Tavern."
|
|
tag="Reviews"
|
|
tagIcon={Star}
|
|
tagAnimation="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
testimonials={[
|
|
{
|
|
id: "1", title: "An Evening to Remember", quote: "The prime rib was absolutely perfect—tender, flavorful, and expertly prepared. Our server knew the wine selection intimately. This is where we'll celebrate every special occasion.", name: "James Richardson", role: "CEO, Ellensburg Tech Solutions", imageSrc: "http://img.b2bpic.net/free-photo/female-employee-black-suit-looks-positive_114579-21797.jpg", imageAlt: "James Richardson"
|
|
},
|
|
{
|
|
id: "2", title: "Where Quality Meets Service", quote: "The attention to detail in every aspect—from the plating to the ambiance—is exceptional. We felt truly welcomed as regulars on our third visit.", name: "Sarah Mitchell", role: "Marketing Director, Local Events Co.", imageSrc: "http://img.b2bpic.net/free-photo/pretty-smiling-business-woman-standing-window_1262-1069.jpg", imageAlt: "Sarah Mitchell"
|
|
},
|
|
{
|
|
id: "3", title: "Perfect for Date Night", quote: "This is our go-to spot for romantic dinners. The warm lighting, intimate setting, and outstanding cocktails make every visit special.", name: "Michael & Emily Chen", role: "Engaged Couple", imageSrc: "http://img.b2bpic.net/free-photo/smiling-business-man-woman-standing-stairs_1262-1129.jpg", imageAlt: "Michael and Emily Chen"
|
|
},
|
|
{
|
|
id: "4", title: "Impeccable Business Dining", quote: "I've hosted numerous client dinners here. The sophisticated setting and flawless execution have consistently impressed our guests.", name: "David Thompson", role: "Regional Director, Enterprise Partners", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-business-man-with-backpack_23-2149915912.jpg", imageAlt: "David Thompson"
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="metrics" data-section="metrics">
|
|
<MetricCardThree
|
|
title="Proven Excellence"
|
|
description="Our commitment to quality dining and service is reflected in every metric."
|
|
tag="Social Proof"
|
|
tagIcon={Award}
|
|
tagAnimation="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
metrics={[
|
|
{
|
|
id: "1", icon: Star,
|
|
title: "Guest Rating", value: "4.5★"
|
|
},
|
|
{
|
|
id: "2", icon: Users,
|
|
title: "Reviews", value: "200+"
|
|
},
|
|
{
|
|
id: "3", icon: Award,
|
|
title: "Years Local", value: "15+"
|
|
},
|
|
{
|
|
id: "4", icon: Heart,
|
|
title: "Returning Guests", value: "85%"
|
|
},
|
|
]}
|
|
animationType="slide-up"
|
|
carouselMode="buttons"
|
|
/>
|
|
</div>
|
|
|
|
<div id="location" data-section="location">
|
|
<ContactSplit
|
|
tag="Visit Us"
|
|
tagIcon={MapPin}
|
|
tagAnimation="slide-up"
|
|
title="Reserve Your Table Today"
|
|
description="Whether you're planning a special celebration, business dinner, or intimate date night, we'd love to welcome you. Call to reserve during peak hours, or book online anytime."
|
|
background={{ variant: "plain" }}
|
|
useInvertedBackground={false}
|
|
imageSrc="http://img.b2bpic.net/free-photo/woman-golden-suit-sits-cafe_8353-301.jpg"
|
|
imageAlt="The Huntsman Tavern interior"
|
|
mediaAnimation="slide-up"
|
|
mediaPosition="right"
|
|
inputPlaceholder="your@email.com"
|
|
buttonText="Subscribe to Updates"
|
|
termsText="We respect your privacy. Unsubscribe anytime."
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterCard
|
|
logoText="The Huntsman Tavern"
|
|
copyrightText="© 2025 The Huntsman Tavern. All rights reserved. | 123 Main Street, Ellensburg, WA 98926"
|
|
socialLinks={[
|
|
{
|
|
icon: Facebook,
|
|
href: "https://facebook.com/huntsmanellensburg", ariaLabel: "Facebook"
|
|
},
|
|
{
|
|
icon: Instagram,
|
|
href: "https://instagram.com/huntsmanellensburg", ariaLabel: "Instagram"
|
|
},
|
|
{
|
|
icon: Phone,
|
|
href: "tel:+1-509-925-1234", ariaLabel: "Call us"
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
} |