Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3ba3fec6aa | |||
| e45295befa | |||
| d8728751f1 | |||
| 6df47fa4df | |||
| 1c9d8deb82 | |||
| c940cbf0d7 | |||
| cefc9b1c44 | |||
| 86595f3327 |
140
src/app/about/page.tsx
Normal file
140
src/app/about/page.tsx
Normal file
@@ -0,0 +1,140 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||||
|
import AboutMetric from "@/components/sections/about/AboutMetric";
|
||||||
|
import FeatureProcessSteps from "@/components/sections/feature/FeatureProcessSteps";
|
||||||
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
|
import { Award, Users, Globe, Heart, Zap } from "lucide-react";
|
||||||
|
|
||||||
|
export default function AboutPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="slide-background"
|
||||||
|
defaultTextAnimation="background-highlight"
|
||||||
|
borderRadius="rounded"
|
||||||
|
contentWidth="mediumSmall"
|
||||||
|
sizing="large"
|
||||||
|
background="grid"
|
||||||
|
cardStyle="outline"
|
||||||
|
primaryButtonStyle="gradient"
|
||||||
|
secondaryButtonStyle="solid"
|
||||||
|
headingFontWeight="bold"
|
||||||
|
>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarStyleCentered
|
||||||
|
brandName="Lumina Hotel"
|
||||||
|
navItems={[
|
||||||
|
{ name: "Rooms", id: "/rooms" },
|
||||||
|
{ name: "Amenities", id: "/amenities" },
|
||||||
|
{ name: "About", id: "/about" },
|
||||||
|
{ name: "Reviews", id: "/reviews" },
|
||||||
|
{ name: "Pricing", id: "/pricing" }
|
||||||
|
]}
|
||||||
|
button={{
|
||||||
|
text: "Book Now", href: "/pricing"
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="about" data-section="about">
|
||||||
|
<AboutMetric
|
||||||
|
title="Lumina Hotel: 25 Years of Excellence"
|
||||||
|
metrics={[
|
||||||
|
{
|
||||||
|
icon: Award,
|
||||||
|
label: "Awards Won", value: "47+"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: Users,
|
||||||
|
label: "Happy Guests Annually", value: "50K+"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: Globe,
|
||||||
|
label: "International Recognition", value: "5-Star"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: Heart,
|
||||||
|
label: "Satisfaction Rate", value: "98%"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
metricsAnimation="blur-reveal"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="vision" data-section="vision">
|
||||||
|
<FeatureProcessSteps
|
||||||
|
title="Our Journey & Vision"
|
||||||
|
description="From our founding in 1999 to becoming a global luxury hospitality icon, Lumina Hotel has consistently delivered exceptional experiences."
|
||||||
|
tag="Our Story"
|
||||||
|
tagIcon={Zap}
|
||||||
|
steps={[
|
||||||
|
{
|
||||||
|
number: "01", title: "Founded with a Dream", tag: "1999", description: "Lumina Hotel was founded with a simple yet powerful vision: to create a sanctuary where luxury meets warmth, and every guest feels like family."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
number: "02", title: "Expansion & Excellence", tag: "2005-2015", description: "Over a decade of growth, we expanded our facilities, added world-class amenities, and established ourselves as a premier destination for discerning travelers."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
number: "03", title: "Global Recognition", tag: "2015-Present", description: "Today, Lumina Hotel is recognized internationally for our commitment to sustainability, innovation, and delivering unforgettable hospitality experiences."
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
stepsAnimation="blur-reveal"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterBase
|
||||||
|
logoText="Lumina Hotel"
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
title: "About", items: [
|
||||||
|
{
|
||||||
|
label: "Our Story", href: "/about"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Awards", href: "#"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Careers", href: "#"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Services", items: [
|
||||||
|
{
|
||||||
|
label: "Rooms", href: "#rooms"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Dining", href: "#"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Spa", href: "#amenities"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Events", href: "#"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Contact", items: [
|
||||||
|
{
|
||||||
|
label: "Call Us: +1 (555) 123-4567", href: "#"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Email: info@luminahotel.com", href: "#"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Visit Us", href: "#"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
copyrightText="© 2025 Lumina Hotel. All rights reserved."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -28,14 +28,13 @@ export default function BlogPage() {
|
|||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
brandName="Lumina Hotel"
|
brandName="Lumina Hotel"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Rooms", id: "#rooms" },
|
||||||
{ name: "Rooms", id: "rooms" },
|
{ name: "Amenities", id: "#amenities" },
|
||||||
{ name: "Amenities", id: "amenities" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "Reviews", id: "#reviews" },
|
||||||
{ name: "Reviews", id: "reviews" },
|
{ name: "Pricing", id: "#pricing" }
|
||||||
{ name: "Pricing", id: "pricing" }
|
|
||||||
]}
|
]}
|
||||||
button={{ text: "Book Now", href: "pricing" }}
|
button={{ text: "Book Now", href: "#pricing" }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -64,16 +63,16 @@ export default function BlogPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "About", items: [
|
title: "About", items: [
|
||||||
{ label: "Our Story", href: "about" },
|
{ label: "Our Story", href: "/about" },
|
||||||
{ label: "Awards", href: "#" },
|
{ label: "Awards", href: "#" },
|
||||||
{ label: "Careers", href: "#" }
|
{ label: "Careers", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Services", items: [
|
title: "Services", items: [
|
||||||
{ label: "Rooms", href: "rooms" },
|
{ label: "Rooms", href: "#rooms" },
|
||||||
{ label: "Dining", href: "#" },
|
{ label: "Dining", href: "#" },
|
||||||
{ label: "Spa", href: "amenities" },
|
{ label: "Spa", href: "#amenities" },
|
||||||
{ label: "Events", href: "#" }
|
{ label: "Events", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@@ -92,4 +91,4 @@ export default function BlogPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1269,4 +1269,4 @@ export default function RootLayout({
|
|||||||
</ServiceWrapper>
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ export default function LuminaHotelPage() {
|
|||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Rooms", id: "rooms" },
|
{ name: "Rooms", id: "rooms" },
|
||||||
{ name: "Amenities", id: "amenities" },
|
{ name: "Amenities", id: "amenities" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Reviews", id: "reviews" },
|
{ name: "Reviews", id: "reviews" },
|
||||||
{ name: "Pricing", id: "pricing" }
|
{ name: "Pricing", id: "pricing" }
|
||||||
]}
|
]}
|
||||||
@@ -290,7 +290,7 @@ export default function LuminaHotelPage() {
|
|||||||
{
|
{
|
||||||
title: "About", items: [
|
title: "About", items: [
|
||||||
{
|
{
|
||||||
label: "Our Story", href: "about"
|
label: "Our Story", href: "/about"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Awards", href: "#"
|
label: "Awards", href: "#"
|
||||||
@@ -335,4 +335,4 @@ export default function LuminaHotelPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -85,8 +85,11 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
brandName="Lumina Hotel"
|
brandName="Lumina Hotel"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Rooms", id: "#rooms" },
|
||||||
{ name: "Shop", id: "/shop" }
|
{ name: "Amenities", id: "#amenities" },
|
||||||
|
{ name: "About", id: "/about" },
|
||||||
|
{ name: "Reviews", id: "#reviews" },
|
||||||
|
{ name: "Pricing", id: "#pricing" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||||
/>
|
/>
|
||||||
@@ -100,16 +103,16 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "About", items: [
|
title: "About", items: [
|
||||||
{ label: "Our Story", href: "about" },
|
{ label: "Our Story", href: "/about" },
|
||||||
{ label: "Awards", href: "#" },
|
{ label: "Awards", href: "#" },
|
||||||
{ label: "Careers", href: "#" }
|
{ label: "Careers", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Services", items: [
|
title: "Services", items: [
|
||||||
{ label: "Rooms", href: "rooms" },
|
{ label: "Rooms", href: "#rooms" },
|
||||||
{ label: "Dining", href: "#" },
|
{ label: "Dining", href: "#" },
|
||||||
{ label: "Spa", href: "amenities" },
|
{ label: "Spa", href: "#amenities" },
|
||||||
{ label: "Events", href: "#" }
|
{ label: "Events", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@@ -149,8 +152,11 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
brandName="Lumina Hotel"
|
brandName="Lumina Hotel"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Rooms", id: "#rooms" },
|
||||||
{ name: "Shop", id: "/shop" }
|
{ name: "Amenities", id: "#amenities" },
|
||||||
|
{ name: "About", id: "/about" },
|
||||||
|
{ name: "Reviews", id: "#reviews" },
|
||||||
|
{ name: "Pricing", id: "#pricing" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||||
/>
|
/>
|
||||||
@@ -172,16 +178,16 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "About", items: [
|
title: "About", items: [
|
||||||
{ label: "Our Story", href: "about" },
|
{ label: "Our Story", href: "/about" },
|
||||||
{ label: "Awards", href: "#" },
|
{ label: "Awards", href: "#" },
|
||||||
{ label: "Careers", href: "#" }
|
{ label: "Careers", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Services", items: [
|
title: "Services", items: [
|
||||||
{ label: "Rooms", href: "rooms" },
|
{ label: "Rooms", href: "#rooms" },
|
||||||
{ label: "Dining", href: "#" },
|
{ label: "Dining", href: "#" },
|
||||||
{ label: "Spa", href: "amenities" },
|
{ label: "Spa", href: "#amenities" },
|
||||||
{ label: "Events", href: "#" }
|
{ label: "Events", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@@ -220,8 +226,11 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
brandName="Lumina Hotel"
|
brandName="Lumina Hotel"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Rooms", id: "#rooms" },
|
||||||
{ name: "Shop", id: "/shop" }
|
{ name: "Amenities", id: "#amenities" },
|
||||||
|
{ name: "About", id: "/about" },
|
||||||
|
{ name: "Reviews", id: "#reviews" },
|
||||||
|
{ name: "Pricing", id: "#pricing" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||||
/>
|
/>
|
||||||
@@ -268,16 +277,16 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "About", items: [
|
title: "About", items: [
|
||||||
{ label: "Our Story", href: "about" },
|
{ label: "Our Story", href: "/about" },
|
||||||
{ label: "Awards", href: "#" },
|
{ label: "Awards", href: "#" },
|
||||||
{ label: "Careers", href: "#" }
|
{ label: "Careers", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Services", items: [
|
title: "Services", items: [
|
||||||
{ label: "Rooms", href: "rooms" },
|
{ label: "Rooms", href: "#rooms" },
|
||||||
{ label: "Dining", href: "#" },
|
{ label: "Dining", href: "#" },
|
||||||
{ label: "Spa", href: "amenities" },
|
{ label: "Spa", href: "#amenities" },
|
||||||
{ label: "Events", href: "#" }
|
{ label: "Events", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@@ -296,4 +305,4 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -38,8 +38,11 @@ export default function ShopPage() {
|
|||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
brandName="Lumina Hotel"
|
brandName="Lumina Hotel"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Rooms", id: "#rooms" },
|
||||||
{ name: "Shop", id: "/shop" }
|
{ name: "Amenities", id: "#amenities" },
|
||||||
|
{ name: "About", id: "/about" },
|
||||||
|
{ name: "Reviews", id: "#reviews" },
|
||||||
|
{ name: "Pricing", id: "#pricing" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||||
/>
|
/>
|
||||||
@@ -53,16 +56,16 @@ export default function ShopPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "About", items: [
|
title: "About", items: [
|
||||||
{ label: "Our Story", href: "about" },
|
{ label: "Our Story", href: "/about" },
|
||||||
{ label: "Awards", href: "#" },
|
{ label: "Awards", href: "#" },
|
||||||
{ label: "Careers", href: "#" }
|
{ label: "Careers", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Services", items: [
|
title: "Services", items: [
|
||||||
{ label: "Rooms", href: "rooms" },
|
{ label: "Rooms", href: "#rooms" },
|
||||||
{ label: "Dining", href: "#" },
|
{ label: "Dining", href: "#" },
|
||||||
{ label: "Spa", href: "amenities" },
|
{ label: "Spa", href: "#amenities" },
|
||||||
{ label: "Events", href: "#" }
|
{ label: "Events", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@@ -101,8 +104,11 @@ export default function ShopPage() {
|
|||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
brandName="Lumina Hotel"
|
brandName="Lumina Hotel"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Rooms", id: "#rooms" },
|
||||||
{ name: "Shop", id: "/shop" }
|
{ name: "Amenities", id: "#amenities" },
|
||||||
|
{ name: "About", id: "/about" },
|
||||||
|
{ name: "Reviews", id: "#reviews" },
|
||||||
|
{ name: "Pricing", id: "#pricing" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||||
/>
|
/>
|
||||||
@@ -124,16 +130,16 @@ export default function ShopPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "About", items: [
|
title: "About", items: [
|
||||||
{ label: "Our Story", href: "about" },
|
{ label: "Our Story", href: "/about" },
|
||||||
{ label: "Awards", href: "#" },
|
{ label: "Awards", href: "#" },
|
||||||
{ label: "Careers", href: "#" }
|
{ label: "Careers", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Services", items: [
|
title: "Services", items: [
|
||||||
{ label: "Rooms", href: "rooms" },
|
{ label: "Rooms", href: "#rooms" },
|
||||||
{ label: "Dining", href: "#" },
|
{ label: "Dining", href: "#" },
|
||||||
{ label: "Spa", href: "amenities" },
|
{ label: "Spa", href: "#amenities" },
|
||||||
{ label: "Events", href: "#" }
|
{ label: "Events", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@@ -152,4 +158,4 @@ export default function ShopPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user