Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2e9d2ce994 | |||
| 8f7e717372 | |||
| 61cec609b0 | |||
| 32ad87c362 | |||
| fba3b2f043 |
293
src/app/page.tsx
293
src/app/page.tsx
@@ -3,198 +3,137 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||||
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
|
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
|
||||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
|
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
|
||||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||||
|
import { Leaf, MapPin, Sparkles, Coffee, ShieldCheck } from 'lucide-react';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="hover-magnetic"
|
defaultButtonVariant="hover-magnetic"
|
||||||
defaultTextAnimation="background-highlight"
|
defaultTextAnimation="reveal-blur"
|
||||||
borderRadius="rounded"
|
borderRadius="soft"
|
||||||
contentWidth="small"
|
contentWidth="mediumLarge"
|
||||||
sizing="mediumLargeSizeLargeTitles"
|
sizing="largeSizeMediumTitles"
|
||||||
background="aurora"
|
background="noise"
|
||||||
cardStyle="glass-elevated"
|
cardStyle="glass-depth"
|
||||||
primaryButtonStyle="gradient"
|
primaryButtonStyle="radial-glow"
|
||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="light"
|
headingFontWeight="semibold"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleCentered
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "Home", id: "#hero" },
|
||||||
name: "Home", id: "#hero"},
|
{ name: "About", id: "#about" },
|
||||||
{
|
{ name: "Amenities", id: "#amenities" },
|
||||||
name: "About", id: "#about"},
|
{ name: "Booking", id: "#booking" },
|
||||||
{
|
]}
|
||||||
name: "Amenities", id: "#amenities"},
|
brandName="Starlight Pod"
|
||||||
{
|
/>
|
||||||
name: "Booking", id: "#booking"},
|
</div>
|
||||||
]}
|
|
||||||
brandName="Starlight Pod"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardRotatedCarousel
|
<HeroCarouselLogo
|
||||||
background={{
|
logoText="Starlight Pod"
|
||||||
variant: "gradient-bars"}}
|
description="Rustic luxury nestled in the heart of Pembrokeshire's ancient woodland."
|
||||||
title="Starlight Pod"
|
buttons={[{ text: "Book Your Escape", href: "#booking" }]}
|
||||||
description="Your private escape in the heart of Pembrokeshire"
|
slides={[
|
||||||
buttons={[
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARmvwfqc0yDbci2Zr7MQSIYS9f/uploaded-1775416153899-nhe9dkix.jpg?_wi=1", imageAlt: "Starlight Pod Glamping" },
|
||||||
{
|
{ imageSrc: "http://img.b2bpic.net/free-photo/tent-interior-glamping-night_1268-20438.jpg?_wi=1", imageAlt: "Interior" },
|
||||||
text: "Book Direct", href: "#booking"},
|
{ imageSrc: "http://img.b2bpic.net/free-photo/wooden-road-red-cliff-near-beach-sylt-germany_181624-13251.jpg?_wi=1", imageAlt: "Coast" },
|
||||||
]}
|
{ imageSrc: "http://img.b2bpic.net/free-photo/transparent-bubble-tent-woman-glamping_1268-20725.jpg?_wi=1", imageAlt: "Hot Tub" },
|
||||||
carouselItems={[
|
{ imageSrc: "http://img.b2bpic.net/free-photo/full-shot-happy-couple-holding-guitar_23-2148503450.jpg?_wi=1", imageAlt: "Firepit" },
|
||||||
{
|
{ imageSrc: "http://img.b2bpic.net/free-photo/back-view-young-couple-nature_23-2148316064.jpg?_wi=1", imageAlt: "Forest" },
|
||||||
id: "h1", imageSrc: "http://img.b2bpic.net/free-photo/tent-interior-glamping-night_1268-20438.jpg?_wi=1", imageAlt: "Starlight Pod Exterior"},
|
]}
|
||||||
{
|
/>
|
||||||
id: "h2", imageSrc: "http://img.b2bpic.net/free-photo/tent-interior-glamping-night_1268-20438.jpg?_wi=2", imageAlt: "Glamping view"},
|
</div>
|
||||||
{
|
|
||||||
id: "h3", imageSrc: "http://img.b2bpic.net/free-photo/wooden-road-red-cliff-near-beach-sylt-germany_181624-13251.jpg?_wi=1", imageAlt: "Pembrokeshire coast"},
|
|
||||||
{
|
|
||||||
id: "h4", imageSrc: "http://img.b2bpic.net/free-photo/transparent-bubble-tent-woman-glamping_1268-20725.jpg?_wi=1", imageAlt: "Private hot tub"},
|
|
||||||
{
|
|
||||||
id: "h5", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-happy-couple-holding-guitar_23-2148503450.jpg?_wi=1", imageAlt: "Firepit area"},
|
|
||||||
{
|
|
||||||
id: "h6", imageSrc: "http://img.b2bpic.net/free-photo/back-view-young-couple-nature_23-2148316064.jpg?_wi=1", imageAlt: "Woodland scenery"},
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<MetricSplitMediaAbout
|
<TestimonialAboutCard
|
||||||
useInvertedBackground={true}
|
tag="Our Story"
|
||||||
title="A Unique Escape"
|
tagIcon={Leaf}
|
||||||
description="A unique and tranquil glamping pod set in beautiful Pembrokeshire countryside. Close to stunning coastal walks and south Pembrokeshire beaches. The perfect escape to recharge and unwind."
|
title="Wild at Heart, Comfort in Soul"
|
||||||
metrics={[
|
description="Starlight Pod was born from a desire to connect people with the raw beauty of Pembrokeshire, without sacrificing the luxuries of home."
|
||||||
{
|
subdescription="From our hand-built structure to the quiet rustle of the forest outside your window, every detail is designed for grounding and rejuvenation."
|
||||||
value: "100%", title: "Relaxation"},
|
icon={Sparkles}
|
||||||
{
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARmvwfqc0yDbci2Zr7MQSIYS9f/uploaded-1775416153899-nhe9dkix.jpg?_wi=2"
|
||||||
value: "Top", title: "Location"},
|
useInvertedBackground={true}
|
||||||
]}
|
/>
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/big-soft-bed-beautiful-pair-lovers-rests_197531-29047.jpg"
|
</div>
|
||||||
mediaAnimation="slide-up"
|
|
||||||
metricsAnimation="slide-up"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="amenities" data-section="amenities">
|
<div id="amenities" data-section="amenities">
|
||||||
<FeatureCardOne
|
<FeatureCardTwentyThree
|
||||||
animationType="slide-up"
|
title="Nature Meets Luxury"
|
||||||
textboxLayout="default"
|
description="Unwind with high-end amenities curated for the discerning traveler."
|
||||||
gridVariant="four-items-2x2-equal-grid"
|
animationType="slide-up"
|
||||||
useInvertedBackground={false}
|
textboxLayout="split"
|
||||||
features={[
|
features={[
|
||||||
{
|
{ id: "f1", title: "Private Hot Tub", tags: ["Luxury", "Relaxation"], imageSrc: "http://img.b2bpic.net/free-photo/transparent-bubble-tent-woman-glamping_1268-20725.jpg?_wi=2" },
|
||||||
title: "Private Hot Tub", description: "Soak under the stars", imageSrc: "http://img.b2bpic.net/free-photo/transparent-bubble-tent-woman-glamping_1268-20725.jpg?_wi=2", imageAlt: "Hot Tub"},
|
{ id: "f2", title: "Firepit Lounge", tags: ["Rustic", "Social"], imageSrc: "http://img.b2bpic.net/free-photo/full-shot-happy-couple-holding-guitar_23-2148503450.jpg?_wi=2" },
|
||||||
{
|
{ id: "f3", title: "Chef's Kitchen", tags: ["Utility", "Modern"], imageSrc: "http://img.b2bpic.net/free-photo/pottery-workplace-with-different-creations-table_23-2148970743.jpg?_wi=1" },
|
||||||
title: "Firepit & BBQ", description: "Evening fires and grilling", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-happy-couple-holding-guitar_23-2148503450.jpg?_wi=2", imageAlt: "Firepit"},
|
{ id: "f4", title: "Nature Trails", tags: ["Adventure", "Local"], imageSrc: "http://img.b2bpic.net/free-photo/wooden-road-red-cliff-near-beach-sylt-germany_181624-13251.jpg?_wi=2" },
|
||||||
{
|
]}
|
||||||
title: "Modern Kitchen", description: "Fully equipped facilities", imageSrc: "http://img.b2bpic.net/free-photo/pottery-workplace-with-different-creations-table_23-2148970743.jpg?_wi=1", imageAlt: "Kitchen"},
|
useInvertedBackground={false}
|
||||||
{
|
/>
|
||||||
title: "Air Conditioning", description: "Stay cool year-round", imageSrc: "http://img.b2bpic.net/free-photo/tent-interior-glamping-night_1268-20438.jpg?_wi=3", imageAlt: "Interior"},
|
</div>
|
||||||
{
|
|
||||||
title: "WiFi & TV", description: "Stay connected or relax", imageSrc: "http://img.b2bpic.net/free-photo/back-view-young-couple-nature_23-2148316064.jpg?_wi=2", imageAlt: "Lounge"},
|
|
||||||
{
|
|
||||||
title: "Beach Access", description: "Minutes to the sand", imageSrc: "http://img.b2bpic.net/free-photo/wooden-road-red-cliff-near-beach-sylt-germany_181624-13251.jpg?_wi=2", imageAlt: "Coast"},
|
|
||||||
]}
|
|
||||||
title="Amenities"
|
|
||||||
description="Everything you need for a comfortable stay."
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="gallery" data-section="gallery">
|
<div id="gallery" data-section="gallery">
|
||||||
<ProductCardFour
|
<ProductCardTwo
|
||||||
animationType="slide-up"
|
title="Capture the Magic"
|
||||||
textboxLayout="default"
|
description="A visual journey through Starlight Pod."
|
||||||
gridVariant="three-columns-all-equal-width"
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
gridVariant="asymmetric-60-wide-40-narrow"
|
||||||
products={[
|
animationType="slide-up"
|
||||||
{
|
useInvertedBackground={true}
|
||||||
id: "p1", name: "Exterior", price: "", variant: "", imageSrc: "http://img.b2bpic.net/free-photo/tent-interior-glamping-night_1268-20438.jpg?_wi=4"},
|
products={[
|
||||||
{
|
{ id: "g1", brand: "Exterior", name: "Golden Hour", price: "", rating: 5, reviewCount: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARmvwfqc0yDbci2Zr7MQSIYS9f/uploaded-1775416153899-nhe9dkix.jpg?_wi=3" },
|
||||||
id: "p2", name: "Landscape", price: "", variant: "", imageSrc: "http://img.b2bpic.net/free-photo/wooden-road-red-cliff-near-beach-sylt-germany_181624-13251.jpg?_wi=3"},
|
{ id: "g2", brand: "Interior", name: "Night Sky View", price: "", rating: 5, reviewCount: "", imageSrc: "http://img.b2bpic.net/free-photo/tent-interior-glamping-night_1268-20438.jpg?_wi=4" },
|
||||||
{
|
{ id: "g3", brand: "Surrounds", name: "Pembrokeshire Coast", price: "", rating: 5, reviewCount: "", imageSrc: "http://img.b2bpic.net/free-photo/wooden-road-red-cliff-near-beach-sylt-germany_181624-13251.jpg?_wi=3" },
|
||||||
id: "p3", name: "Hot Tub", price: "", variant: "", imageSrc: "http://img.b2bpic.net/free-photo/transparent-bubble-tent-woman-glamping_1268-20725.jpg?_wi=3"},
|
]}
|
||||||
{
|
/>
|
||||||
id: "p4", name: "Firepit", price: "", variant: "", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-happy-couple-holding-guitar_23-2148503450.jpg?_wi=3"},
|
</div>
|
||||||
{
|
|
||||||
id: "p5", name: "Kitchen", price: "", variant: "", imageSrc: "http://img.b2bpic.net/free-photo/pottery-workplace-with-different-creations-table_23-2148970743.jpg?_wi=2"},
|
|
||||||
{
|
|
||||||
id: "p6", name: "Sunset", price: "", variant: "", imageSrc: "http://img.b2bpic.net/free-photo/back-view-young-couple-nature_23-2148316064.jpg?_wi=3"},
|
|
||||||
]}
|
|
||||||
title="Our Sanctuary"
|
|
||||||
description="A glimpse into your next retreat."
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="reviews" data-section="reviews">
|
<div id="reviews" data-section="reviews">
|
||||||
<TestimonialCardFifteen
|
<TestimonialCardSix
|
||||||
useInvertedBackground={false}
|
title="What Our Guests Say"
|
||||||
testimonial="An absolutely magical experience. The pod was pristine and the location is perfect for coastal walks."
|
description="Belonging to the forest, remembered by the heart."
|
||||||
rating={5}
|
animationType="slide-up"
|
||||||
author="Sarah Miller"
|
textboxLayout="default"
|
||||||
avatars={[
|
useInvertedBackground={false}
|
||||||
{
|
testimonials={[
|
||||||
src: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-wearing-hat_23-2148631369.jpg", alt: "Guest"},
|
{ id: "t1", name: "Elena V.", handle: "@traveler", testimonial: "The most grounding experience. Waking up to the sounds of the woods was life-changing.", icon: ShieldCheck },
|
||||||
{
|
{ id: "t2", name: "Marcus P.", handle: "@naturelover", testimonial: "Luxury and simplicity perfectly balanced. Will definitely be back.", icon: Coffee },
|
||||||
src: "http://img.b2bpic.net/free-photo/charming-male-female-friends-smiling-pink-background-woman-purple-sweatshirt-man-brown-outfit-look-into-camera_197531-27607.jpg", alt: "Guest"},
|
]}
|
||||||
{
|
/>
|
||||||
src: "http://img.b2bpic.net/free-photo/low-angle-female-traveler-bridge_23-2148362056.jpg", alt: "Guest"},
|
</div>
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/smiling-woman-resting-log_23-2147835308.jpg", alt: "Guest"},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/portrait-young-business-woman-park_1303-28948.jpg", alt: "Guest"},
|
|
||||||
]}
|
|
||||||
ratingAnimation="slide-up"
|
|
||||||
avatarsAnimation="slide-up"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="booking" data-section="booking">
|
<div id="booking" data-section="booking">
|
||||||
<ContactCTA
|
<ContactCTA
|
||||||
useInvertedBackground={true}
|
tag="Book Direct"
|
||||||
background={{
|
title="Ready for Your Escape?"
|
||||||
variant: "plain"}}
|
description="Secure your dates at Starlight Pod for an unforgettable retreat in the Pembrokeshire wild."
|
||||||
tag="Booking"
|
buttons={[{ text: "Check Availability", href: "#" }]}
|
||||||
title="Check Availability"
|
background={{ variant: "sparkles-gradient" }}
|
||||||
description="Select your dates and book your Pembrokeshire escape."
|
useInvertedBackground={true}
|
||||||
buttons={[
|
/>
|
||||||
{
|
</div>
|
||||||
text: "Book Now", href: "#"},
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBaseCard
|
<FooterBase
|
||||||
logoText="Starlight Pod"
|
logoText="Starlight Pod"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{ title: "Visit", items: [{ label: "Pembrokeshire, UK", href: "#" }] },
|
||||||
title: "Location", items: [
|
{ title: "Help", items: [{ label: "Contact", href: "#booking" }, { label: "Privacy", href: "#" }] },
|
||||||
{
|
]}
|
||||||
label: "Maidenwells, Pembrokeshire", href: "#"},
|
/>
|
||||||
],
|
</div>
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Navigation", items: [
|
|
||||||
{
|
|
||||||
label: "Home", href: "#hero"},
|
|
||||||
{
|
|
||||||
label: "Booking", href: "#booking"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user