Initial commit

This commit is contained in:
dk
2026-01-29 15:33:32 +02:00
commit 593307a468
300 changed files with 58354 additions and 0 deletions

170
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,170 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import MediaSplitTabsAbout from '@/components/sections/about/MediaSplitTabsAbout';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { Mail } from "lucide-react";
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="smallMedium"
sizing="largeSmallSizeLargeTitles"
background="floatingGradient"
cardStyle="subtle-shadow"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="glass"
headingFontWeight="extrabold"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "hero" },
{ name: "Rooms", id: "product" },
{ name: "Amenities", id: "feature" },
{ name: "Reviews", id: "testimonial" },
{ name: "Contact", id: "contact" }
]}
brandName="Elegance Suites"
bottomLeftText="Luxury Hospitality"
bottomRightText="reservations@elegancesuites.com"
/>
</div>
<div id="about" data-section="about">
<MediaSplitTabsAbout
title="About Elegance Suites"
description="Discover the heart of luxury hospitality and world-class service"
tabs={[
{
id: "heritage",
label: "Our Heritage",
description: "Since 1995, Elegance Suites has been a beacon of luxury hospitality. Our commitment to excellence, attention to detail, and passion for service has made us a preferred destination for discerning travelers worldwide."
},
{
id: "vision",
label: "Our Vision",
description: "We envision creating transformative experiences for every guest. Our mission is to deliver exceptional service, timeless elegance, and unforgettable memories at every interaction."
},
{
id: "values",
label: "Our Values",
description: "Excellence, integrity, and guest satisfaction are at the core of everything we do. We celebrate diversity, embrace innovation, and maintain the highest standards of hospitality."
}
]}
imageSrc="https://img.b2bpic.net/free-photo/panoramic-sauna-view-organic-wooden-columns-resort-style-wellness_169016-68883.jpg"
imageAlt="Elegance Suites exterior architecture"
imagePosition="right"
useInvertedBackground="noInvert"
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardSeven
title="Our Achievements"
description="Celebrating excellence and guest satisfaction milestones"
textboxLayout="default"
useInvertedBackground="invertDefault"
animationType="slide-up"
metrics={[
{
id: "1",
value: "28+",
title: "Years of Excellence",
items: [
"Industry recognition",
"Award-winning service",
"Consistent 5-star ratings"
]
},
{
id: "2",
value: "50K+",
title: "Satisfied Guests",
items: [
"Repeat booking rate 85%",
"Global clientele",
"Testimonials 4.9/5 stars"
]
},
{
id: "3",
value: "150",
title: "Luxury Rooms",
items: [
"Multiple categories available",
"Premium furnishings",
"Modern technology throughout"
]
},
{
id: "4",
value: "24/7",
title: "Concierge Support",
items: [
"Multilingual staff",
"Guest assistance anytime",
"Personalized recommendations"
]
}
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
tag="Stay Connected"
tagIcon={Mail}
title="Subscribe to Our Newsletter"
description="Get exclusive offers, insider tips, and updates about our latest events and promotions directly to your inbox"
useInvertedBackground="noInvert"
imageSrc="https://img.b2bpic.net/free-photo/happy-caucasian-pretty-long-hair-elegant-tourist-woman-dress-with-red-suitcase-outside-hotel_343596-3652.jpg"
imageAlt="Luxury travel destination"
mediaPosition="right"
inputPlaceholder="Enter your email address"
buttonText="Subscribe Now"
termsText="We respect your privacy. Unsubscribe anytime. By subscribing, you agree to our Terms of Service and Privacy Policy."
/>
</div>
<FooterBaseReveal
columns={[
{
title: "Hotel Info",
items: [
{ label: "About Us", href: "about" },
{ label: "Rooms & Suites", href: "product" },
{ label: "Amenities", href: "feature" },
{ label: "Contact", href: "contact" }
]
},
{
title: "Guest Services",
items: [
{ label: "Reservations", href: "contact" },
{ label: "Room Service", href: "#" },
{ label: "Concierge", href: "#" },
{ label: "Events & Weddings", href: "#" }
]
},
{
title: "Connect With Us",
items: [
{ label: "Email: reservations@elegancesuites.com", href: "mailto:reservations@elegancesuites.com" },
{ label: "Phone: +1 (800) ELEGANCE", href: "#" },
{ label: "Address: 123 Luxury Ave, Premium City", href: "#" },
{ label: "Loyalty Program", href: "#" }
]
}
]}
copyrightText="© 2025 Elegance Suites. All rights reserved. | Privacy Policy | Terms of Service"
/>
</ThemeProvider>
);
}