Merge version_1 into main #2
252
src/app/page.tsx
252
src/app/page.tsx
@@ -6,10 +6,9 @@ import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
|
||||
import MetricCardTen from '@/components/sections/metrics/MetricCardTen';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import { PlayCircle, Users, Waves } from "lucide-react";
|
||||
import { PlayCircle, Users, Waves, Gamepad2, Table, Dribbble } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -29,22 +28,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Activities",
|
||||
id: "features",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Activities", id: "features" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Shamsi Resort"
|
||||
/>
|
||||
@@ -52,101 +39,20 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitTestimonial
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
title="Your Perfect Family Getaway Awaits"
|
||||
description="Escape to Shamsi Resort Farmhouse on Damloti Road. Experience a premium, family-friendly destination featuring spacious portions, expansive green lawns, and endless entertainment for all ages."
|
||||
testimonials={[
|
||||
{
|
||||
name: "The Ahmed Family",
|
||||
handle: "@ahmedfamily",
|
||||
testimonial: "We had a wonderful day out! The lawn was perfect for the kids to run around and the indoor games kept everyone entertained.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-grandfather-baby_23-2149071604.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
name: "Sarah & Team",
|
||||
handle: "@sarah_events",
|
||||
testimonial: "Excellent location, so easy to reach from the city. The farmhouse is clean, spacious, and very welcoming.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-parents-with-kid_23-2148996558.jpg",
|
||||
},
|
||||
{
|
||||
name: "Khan Family",
|
||||
handle: "@khanfamily",
|
||||
testimonial: "Perfect spot for a birthday picnic. The staff is great and the variety of games made it an unforgettable experience.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/family-with-cute-kids-autumn-park_1157-26495.jpg",
|
||||
},
|
||||
{
|
||||
name: "Rizwan & Friends",
|
||||
handle: "@rizwan_visits",
|
||||
testimonial: "A truly trusted destination for a quick getaway. We love visiting for family picnics every season.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-woman-wrapping-scarf_23-2147911443.jpg",
|
||||
},
|
||||
{
|
||||
name: "Ali & Family",
|
||||
handle: "@alifamily",
|
||||
testimonial: "Absolutely loved the serene environment. Truly the best spot for a weekend recharge near the city.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-grandfather-baby_23-2149071604.jpg?_wi=2",
|
||||
},
|
||||
{ name: "The Ahmed Family", handle: "@ahmedfamily", testimonial: "We had a wonderful day out! The lawn was perfect for the kids to run around and the indoor games kept everyone entertained.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/full-shot-grandfather-baby_23-2149071604.jpg" },
|
||||
{ name: "Sarah & Team", handle: "@sarah_events", testimonial: "Excellent location, so easy to reach from the city. The farmhouse is clean, spacious, and very welcoming.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-parents-with-kid_23-2148996558.jpg" },
|
||||
{ name: "Khan Family", handle: "@khanfamily", testimonial: "Perfect spot for a birthday picnic. The staff is great and the variety of games made it an unforgettable experience.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/family-with-cute-kids-autumn-park_1157-26495.jpg" },
|
||||
{ name: "Rizwan & Friends", handle: "@rizwan_visits", testimonial: "A truly trusted destination for a quick getaway. We love visiting for family picnics every season.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/cheerful-woman-wrapping-scarf_23-2147911443.jpg" },
|
||||
{ name: "Ali & Family", handle: "@alifamily", testimonial: "Absolutely loved the serene environment. Truly the best spot for a weekend recharge near the city.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/full-shot-grandfather-baby_23-2149071604.jpg" }
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Your Visit",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/romantic-villa-ephrussie-french-riviera-beauty-nature_1268-36318.jpg?_wi=1"
|
||||
buttons={[{ text: "Book Your Visit", href: "#contact" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/romantic-villa-ephrussie-french-riviera-beauty-nature_1268-36318.jpg"
|
||||
imageAlt="Luxurious farmhouse with open lawn and greenery"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/full-shot-grandfather-baby_23-2149071604.jpg",
|
||||
alt: "User 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-parents-with-kid_23-2148996558.jpg",
|
||||
alt: "User 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/family-with-cute-kids-autumn-park_1157-26495.jpg",
|
||||
alt: "User 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/cheerful-woman-wrapping-scarf_23-2147911443.jpg",
|
||||
alt: "User 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/full-shot-grandfather-baby_23-2149071604.jpg",
|
||||
alt: "User 5",
|
||||
},
|
||||
]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Premium Experience",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Family Friendly",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Safe Environment",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Easy Access",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Year-round Fun",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -156,20 +62,11 @@ export default function LandingPage() {
|
||||
title="Peaceful Getaway on Damloti Road"
|
||||
description="Conveniently located with smooth accessibility, Shamsi Resort Farmhouse offers a peaceful sanctuary away from the city's hustle. Whether planning a birthday, a picnic, or a casual day out, we provide a comfortable, premium experience for small and large families alike."
|
||||
metrics={[
|
||||
{
|
||||
value: "100%",
|
||||
title: "Customer Satisfaction",
|
||||
},
|
||||
{
|
||||
value: "24/7",
|
||||
title: "Great Hospitality",
|
||||
},
|
||||
{
|
||||
value: "Year-round",
|
||||
title: "Perfect for Picnics",
|
||||
},
|
||||
{ value: "100%", title: "Customer Satisfaction" },
|
||||
{ value: "24/7", title: "Great Hospitality" },
|
||||
{ value: "Year-round", title: "Perfect for Picnics" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/volunteers-picking-up-trash-from-grass_1262-21091.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/volunteers-picking-up-trash-from-grass_1262-21091.jpg"
|
||||
imageAlt="Peaceful landscape of the farmhouse"
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
@@ -183,77 +80,33 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Indoor Gaming Zone",
|
||||
description: "Challenge your friends and family to a competitive game of snooker, foosball, or a fast-paced match of table tennis inside our comfortable climate-controlled areas.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-people-playing-table-football-while-indoors_146671-15233.jpg",
|
||||
imageAlt: "Indoor gaming setup",
|
||||
},
|
||||
id: "1", title: "Indoor Gaming Zone", description: "Challenge your friends and family to a competitive game of snooker, foosball, or a fast-paced match of table tennis inside our comfortable climate-controlled areas.", media: { imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-people-playing-table-football-while-indoors_146671-15233.jpg", imageAlt: "Indoor gaming setup" },
|
||||
items: [
|
||||
{
|
||||
icon: TableProperties,
|
||||
text: "Professional Snooker Table",
|
||||
},
|
||||
{
|
||||
icon: Gamepad2,
|
||||
text: "Competitive Foosball",
|
||||
},
|
||||
{
|
||||
icon: PlayCircle,
|
||||
text: "Table Tennis",
|
||||
},
|
||||
{ icon: Table, text: "Professional Snooker Table" },
|
||||
{ icon: Gamepad2, text: "Competitive Foosball" },
|
||||
{ icon: PlayCircle, text: "Table Tennis" }
|
||||
],
|
||||
reverse: false,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/romantic-villa-ephrussie-french-riviera-beauty-nature_1268-36318.jpg?_wi=2",
|
||||
imageAlt: "luxury farmhouse lawn greenery",
|
||||
reverse: false
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Outdoor Lawn Activities",
|
||||
description: "Enjoy the fresh air on our wide, beautifully maintained lawn. It's the perfect setting for cricket matches, family games, or just relaxing on the swings.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/romantic-villa-ephrussie-french-riviera-beauty-nature_1268-36318.jpg?_wi=3",
|
||||
imageAlt: "Wide outdoor lawn",
|
||||
},
|
||||
id: "2", title: "Outdoor Lawn Activities", description: "Enjoy the fresh air on our wide, beautifully maintained lawn. It's the perfect setting for cricket matches, family games, or just relaxing on the swings.", media: { imageSrc: "http://img.b2bpic.net/free-photo/romantic-villa-ephrussie-french-riviera-beauty-nature_1268-36318.jpg", imageAlt: "Wide outdoor lawn" },
|
||||
items: [
|
||||
{
|
||||
icon: Dribbble,
|
||||
text: "Cricket Field",
|
||||
},
|
||||
{
|
||||
icon: Waves,
|
||||
text: "Swings for Kids",
|
||||
},
|
||||
{
|
||||
icon: Users,
|
||||
text: "Space for Large Gatherings",
|
||||
},
|
||||
{ icon: Dribbble, text: "Cricket Field" },
|
||||
{ icon: Waves, text: "Swings for Kids" },
|
||||
{ icon: Users, text: "Space for Large Gatherings" }
|
||||
],
|
||||
reverse: true,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/volunteers-picking-up-trash-from-grass_1262-21091.jpg?_wi=2",
|
||||
imageAlt: "peaceful resort farmhouse landscape",
|
||||
},
|
||||
reverse: true
|
||||
}
|
||||
]}
|
||||
title="Entertainment for Everyone"
|
||||
description="From indoor games like table tennis and snooker to outdoor excitement on our expansive lawn, we have something to keep every guest happy and engaged."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metric" data-section="metric">
|
||||
<MetricCardTen
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
tag="Book Now"
|
||||
title="Plan Your Perfect Day"
|
||||
description="Ready to experience Shamsi Resort Farmhouse? Send us your email and we'll reach out to help you book your next celebration or picnic."
|
||||
@@ -267,43 +120,20 @@ export default function LandingPage() {
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Links",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "#hero",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Activities",
|
||||
href: "#features",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
title: "Links", items: [
|
||||
{ label: "Home", href: "#hero" },
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Activities", href: "#features" },
|
||||
{ label: "Contact", href: "#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{
|
||||
label: "Bookings",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
label: "Policies",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "FAQs",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
title: "Support", items: [
|
||||
{ label: "Bookings", href: "#contact" },
|
||||
{ label: "Policies", href: "#" },
|
||||
{ label: "FAQs", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
bottomLeftText="© 2024 Shamsi Resort Farmhouse. All rights reserved."
|
||||
bottomRightText="Damloti Road, City Getaway"
|
||||
|
||||
Reference in New Issue
Block a user