182 lines
8.2 KiB
TypeScript
182 lines
8.2 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
|
import FeatureBento from '@/components/sections/feature/FeatureBento';
|
|
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
|
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
|
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
|
import TextAbout from '@/components/sections/about/TextAbout';
|
|
import { Star, Utensils } from "lucide-react";
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="text-shift"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="rounded"
|
|
contentWidth="mediumLarge"
|
|
sizing="mediumLargeSizeLargeTitles"
|
|
background="aurora"
|
|
cardStyle="gradient-bordered"
|
|
primaryButtonStyle="diagonal-gradient"
|
|
secondaryButtonStyle="glass"
|
|
headingFontWeight="semibold"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleFullscreen
|
|
navItems={[
|
|
{
|
|
name: "Home", id: "#hero"},
|
|
{
|
|
name: "Dining", id: "#about"},
|
|
{
|
|
name: "Services", id: "#features"},
|
|
{
|
|
name: "Rentals", id: "#products"},
|
|
{
|
|
name: "Contact", id: "#contact"},
|
|
]}
|
|
brandName="Whitman Hollow"
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroOverlayTestimonial
|
|
title="Your Gateway to Lakeside Living"
|
|
description="Whitman Hollow Marina offers everything you need for the perfect lake getaway: premium boat slips, delicious dining, modern rentals, and serene campground spots."
|
|
testimonials={[
|
|
{
|
|
name: "John Miller", handle: "@jmiller", testimonial: "Best marina in TN. The food is incredible!", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-holding-hat-outdoors_23-2148618868.jpg"},
|
|
{
|
|
name: "Sarah Davis", handle: "@sarahd", testimonial: "The slips are secure and very accessible.", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-family-hanging-out-jetty_23-2150514786.jpg"},
|
|
{
|
|
name: "Mike Ross", handle: "@mross", testimonial: "Rented a pontoon here twice, great service!", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/fit-tanned-caucasian-woman-sport-top-jean-shorts-balcony-luxury-villa-with-ocean-tropical-view-enjoying-her-vacation-posing-camera_343596-2937.jpg"},
|
|
{
|
|
name: "Emily Blunt", handle: "@eblunt", testimonial: "Camping spots right by the water, beautiful.", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-girls-smiling-camera_23-2148299459.jpg"},
|
|
{
|
|
name: "Dave Smith", handle: "@dsmith", testimonial: "Fantastic staff, welcoming atmosphere.", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/lovely-couple-looking-each-other_23-2148293890.jpg"},
|
|
]}
|
|
imageSrc="http://img.b2bpic.net/free-photo/sunset-bay_23-2147670170.jpg"
|
|
imageAlt="Aerial view of Whitman Hollow Marina"
|
|
avatars={[
|
|
{
|
|
src: "http://img.b2bpic.net/free-photo/happy-woman-holding-hat-outdoors_23-2148618868.jpg", alt: "John Miller"},
|
|
{
|
|
src: "http://img.b2bpic.net/free-photo/full-shot-family-hanging-out-jetty_23-2150514786.jpg", alt: "Sarah Davis"},
|
|
{
|
|
src: "http://img.b2bpic.net/free-photo/fit-tanned-caucasian-woman-sport-top-jean-shorts-balcony-luxury-villa-with-ocean-tropical-view-enjoying-her-vacation-posing-camera_343596-2937.jpg", alt: "Mike Ross"},
|
|
{
|
|
src: "http://img.b2bpic.net/free-photo/medium-shot-girls-smiling-camera_23-2148299459.jpg", alt: "Emily Blunt"},
|
|
{
|
|
src: "http://img.b2bpic.net/free-photo/lovely-couple-looking-each-other_23-2148293890.jpg", alt: "Dave Smith"},
|
|
]}
|
|
avatarText="Join 500+ satisfied lake enthusiasts"
|
|
/>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<TextAbout
|
|
useInvertedBackground={false}
|
|
tag="Our Restaurant"
|
|
title="Exceptional Dining at the Lake"
|
|
/>
|
|
</div>
|
|
|
|
<div id="features" data-section="features">
|
|
<FeatureBento
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
features={[
|
|
{
|
|
title: "Secure Boat Slips", description: "Safe, reliable storage for your vessel with easy harbor access.", bentoComponent: "reveal-icon", icon: Star,
|
|
},
|
|
{
|
|
title: "Serene Campground", description: "Stay the weekend in our picturesque, water-adjacent sites.", bentoComponent: "reveal-icon", icon: Star,
|
|
},
|
|
{
|
|
title: "Premium Dining", description: "Delicious local food with waterfront views every day.", bentoComponent: "reveal-icon", icon: Utensils,
|
|
},
|
|
]}
|
|
title="Everything You Need at One Stop"
|
|
description="We cater to boaters, campers, and foodies alike with premium amenities."
|
|
/>
|
|
</div>
|
|
|
|
<div id="products" data-section="products">
|
|
<ProductCardOne
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
gridVariant="three-columns-all-equal-width"
|
|
useInvertedBackground={false}
|
|
products={[
|
|
{
|
|
id: "p1", name: "Pontoon Boat", price: "$250/day", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-laying-boat_23-2149046378.jpg"},
|
|
{
|
|
id: "p2", name: "Ski Boat", price: "$400/day", imageSrc: "http://img.b2bpic.net/free-photo/moorings-with-boats_1085-507.jpg"},
|
|
{
|
|
id: "p3", name: "Kayak Rental", price: "$40/day", imageSrc: "http://img.b2bpic.net/free-photo/cropped-image-confident-woman-standing-with-paddle-surfboard-sup-sport-hobby-yoga_639032-1450.jpg"},
|
|
{
|
|
id: "p4", name: "Fishing Boat", price: "$150/day", imageSrc: "http://img.b2bpic.net/free-photo/colorful-fishing-baits-with-net-wooden-desk_23-2148189216.jpg"},
|
|
{
|
|
id: "p5", name: "Classic Canoe", price: "$60/day", imageSrc: "http://img.b2bpic.net/free-photo/women-pushing-kayak-intro-water_23-2148683907.jpg"},
|
|
{
|
|
id: "p6", name: "Jet Ski", price: "$300/day", imageSrc: "http://img.b2bpic.net/free-photo/couple-having-fun-water-scooter-summer-sea-activity_285396-2816.jpg"},
|
|
]}
|
|
title="Explore Our Fleet"
|
|
description="Wide selection of reliable boats for your adventure."
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactSplit
|
|
useInvertedBackground={false}
|
|
background={{
|
|
variant: "plain"}}
|
|
tag="Visit Us"
|
|
title="Plan Your Visit Today"
|
|
description="Have questions about boat slips or campground availability? Reach out now."
|
|
imageSrc="http://img.b2bpic.net/free-photo/closeup-shot-wooden-fence-with-writing-welcome-our-wedding_181624-20070.jpg"
|
|
mediaAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterBaseCard
|
|
logoText="Whitman Hollow"
|
|
columns={[
|
|
{
|
|
title: "Navigate", items: [
|
|
{
|
|
label: "Dining", href: "#about"},
|
|
{
|
|
label: "Rentals", href: "#products"},
|
|
{
|
|
label: "Contact", href: "#contact"},
|
|
],
|
|
},
|
|
{
|
|
title: "Legal", items: [
|
|
{
|
|
label: "Privacy Policy", href: "#"},
|
|
{
|
|
label: "Terms", href: "#"},
|
|
],
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|