Merge version_2 into main #3
1443
src/app/layout.tsx
1443
src/app/layout.tsx
File diff suppressed because it is too large
Load Diff
156
src/app/page.tsx
156
src/app/page.tsx
@@ -3,24 +3,30 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery";
|
||||
import AboutMetric from "@/components/sections/about/AboutMetric";
|
||||
import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen";
|
||||
import MediaAbout from "@/components/sections/about/MediaAbout";
|
||||
import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
|
||||
import TeamCardFive from "@/components/sections/team/TeamCardFive";
|
||||
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
|
||||
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
|
||||
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
||||
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
|
||||
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
||||
import Link from "next/link";
|
||||
import { Sparkles, TrendingUp, Users, Globe, Zap, Award, Star, Lightbulb } from "lucide-react";
|
||||
import {
|
||||
Sparkles,
|
||||
TrendingUp,
|
||||
Users,
|
||||
Globe,
|
||||
Zap,
|
||||
Award,
|
||||
Star,
|
||||
Lightbulb,
|
||||
Cpu,
|
||||
BarChart3,
|
||||
Clock,
|
||||
Smile,
|
||||
} from "lucide-react";
|
||||
|
||||
export default function HomePage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Team", id: "team" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
items: [
|
||||
@@ -83,14 +89,10 @@ export default function HomePage() {
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Team", id: "team" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
].map((item) =>
|
||||
item.id.startsWith("/")
|
||||
? { name: item.name, id: item.id }
|
||||
: { name: item.name, id: `#${item.id}` }
|
||||
)}
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Team", id: "#team" },
|
||||
{ name: "Testimonials", id: "#testimonials" },
|
||||
]}
|
||||
button={{
|
||||
text: "Get Started", href: "#contact"}}
|
||||
/>
|
||||
@@ -131,32 +133,66 @@ export default function HomePage() {
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<AboutMetric
|
||||
title="Luxeria empowers premium hospitality brands with intelligent AI solutions that enhance guest experiences, streamline operations, and unlock unprecedented revenue growth in an increasingly digital world."
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{ icon: TrendingUp, label: "Revenue Growth", value: "350%+" },
|
||||
{ icon: Users, label: "Happy Clients", value: "500+" },
|
||||
{ icon: Globe, label: "Countries Served", value: "45+" },
|
||||
{ icon: Zap, label: "AI Solutions", value: "12+" },
|
||||
<MediaAbout
|
||||
title="Elevate Every Guest Moment"
|
||||
description="Luxeria empowers premium hospitality brands with intelligent AI solutions that enhance guest experiences, streamline operations, and unlock unprecedented revenue growth. Our luxury-first approach combines cutting-edge technology with deep hospitality expertise."
|
||||
tag="About Luxeria"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AiIM2cipBeiV5T0azsou56MBZ1/elegant-luxury-hotel-lobby-featuring-ai--1773069051024-bafb5705.png"
|
||||
imageAlt="Luxeria luxury hospitality solutions"
|
||||
buttons={[
|
||||
{ text: "Discover Our Vision", href: "#vision" },
|
||||
{ text: "Explore Solutions", href: "/services" },
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardFourteen
|
||||
title="Our clients experience transformational results within the first 90 days of implementation, setting new standards for luxury hospitality excellence."
|
||||
<MetricCardThree
|
||||
title="Industry-Leading Results"
|
||||
description="Our clients achieve transformational outcomes that redefine luxury hospitality standards"
|
||||
tag="Impact Metrics"
|
||||
tagIcon={Lightbulb}
|
||||
tagAnimation="slide-up"
|
||||
metrics={[
|
||||
{
|
||||
id: "1", value: "89%", description:
|
||||
"Increase in guest satisfaction scores after AI personalization implementation"},
|
||||
id: "1", icon: TrendingUp,
|
||||
title: "Revenue Growth", value: "350%+"},
|
||||
{
|
||||
id: "2", value: "2.5x", description: "Boost in direct online bookings through intelligent recommendation engine"},
|
||||
id: "2", icon: Smile,
|
||||
title: "Guest Satisfaction", value: "89%"},
|
||||
{
|
||||
id: "3", icon: BarChart3,
|
||||
title: "Booking Increase", value: "2.5x"},
|
||||
{
|
||||
id: "4", icon: Clock,
|
||||
title: "Time to ROI", value: "90 Days"},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="comparison" data-section="comparison">
|
||||
<FeatureCardSixteen
|
||||
title="Why Luxeria Stands Apart"
|
||||
description="See how we deliver what traditional vendors simply cannot offer"
|
||||
tag="Luxeria Advantage"
|
||||
tagIcon={Award}
|
||||
tagAnimation="slide-up"
|
||||
negativeCard={{
|
||||
items: [
|
||||
"Generic, one-size-fits-all solutions", "Limited hospitality expertise", "High implementation costs", "Poor guest experience integration", "Slow ROI timelines"],
|
||||
}}
|
||||
positiveCard={{
|
||||
items: [
|
||||
"Luxury-first AI personalization engine", "Deep hospitality technology expertise", "Efficient, cost-effective deployment", "Seamless premium guest experiences", "ROI achieved in 90 days"],
|
||||
}}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -194,38 +230,41 @@ export default function HomePage() {
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTen
|
||||
<TestimonialCardSixteen
|
||||
title="Trusted by Luxury Brands"
|
||||
description="Hear from industry leaders how Luxeria transformed their operations and guest experiences."
|
||||
tag="Client Success"
|
||||
tagIcon={Award}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", title: "Revolutionized Our Guest Experience", quote:
|
||||
"Luxeria's AI personalization engine transformed how we engage guests. Our satisfaction scores increased by 45% in just three months. The ROI was immediate and exceptional.", name: "Catherine Dupont", role: "General Manager, Le Ciel Étoilé Restaurant", imageSrc:
|
||||
id: "1", name: "Catherine Dupont", role: "General Manager", company: "Le Ciel Étoilé Restaurant", rating: 5,
|
||||
title: "Revolutionized Our Guest Experience", quote:
|
||||
"Luxeria's AI personalization engine transformed how we engage guests. Our satisfaction scores increased by 45% in just three months. The ROI was immediate and exceptional.", imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AiIM2cipBeiV5T0azsou56MBZ1/professional-portrait-of-an-elegant-woma-1773069048704-02946e61.png", imageAlt: "Catherine Dupont"},
|
||||
{
|
||||
id: "2", title: "Operational Excellence Unlocked", quote:
|
||||
"The intelligent scheduling system alone saved us $200K annually while improving staff satisfaction. Luxeria understood luxury hospitality in ways most tech vendors don't.", name: "Ahmad Al-Rashid", role: "Owner, Oasis Luxury Spa & Salon", imageSrc:
|
||||
id: "2", name: "Ahmad Al-Rashid", role: "Owner", company: "Oasis Luxury Spa & Salon", rating: 5,
|
||||
title: "Operational Excellence Unlocked", quote:
|
||||
"The intelligent scheduling system alone saved us $200K annually while improving staff satisfaction. Luxeria understood luxury hospitality in ways most tech vendors don't.", imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AiIM2cipBeiV5T0azsou56MBZ1/professional-headshot-of-a-confident-man-1773069050067-0aee6d1d.png", imageAlt: "Ahmad Al-Rashid"},
|
||||
{
|
||||
id: "3", title: "Booking Revolution", quote:
|
||||
"Direct bookings increased by 280% thanks to their smart reservation system. They brought sophistication and intelligence to our digital presence.", name: "Emma Goldstein", role: "Director of Operations, The Regent Hotel", imageSrc:
|
||||
id: "3", name: "Emma Goldstein", role: "Director of Operations", company: "The Regent Hotel", rating: 5,
|
||||
title: "Booking Revolution", quote:
|
||||
"Direct bookings increased by 280% thanks to their smart reservation system. They brought sophistication and intelligence to our digital presence.", imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AiIM2cipBeiV5T0azsou56MBZ1/professional-portrait-of-a-professional--1773069048578-93df92a3.png", imageAlt: "Emma Goldstein"},
|
||||
{
|
||||
id: "4", title: "True Partnership in Innovation", quote:
|
||||
"Luxeria isn't just a vendor—they're strategic partners who genuinely care about our brand evolution. Their team's hospitality expertise is unmatched in the tech industry.", name: "Francesco Rossi", role: "CEO, Aperitivo Fine Dining Group", imageSrc:
|
||||
id: "4", name: "Francesco Rossi", role: "CEO", company: "Aperitivo Fine Dining Group", rating: 5,
|
||||
title: "True Partnership in Innovation", quote:
|
||||
"Luxeria isn't just a vendor—they're strategic partners who genuinely care about our brand evolution. Their team's hospitality expertise is unmatched in the tech industry.", imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AiIM2cipBeiV5T0azsou56MBZ1/professional-headshot-of-an-distinguishe-1773069048048-7ed4ab3f.png", imageAlt: "Francesco Rossi"},
|
||||
{
|
||||
id: "5", title: "Data-Driven Growth", quote:
|
||||
"Their analytics dashboard gave us clarity on guest behavior we never had before. We've optimized everything from pricing to staffing based on real insights.", name: "Lisa Chen", role: "Revenue Manager, Lotus Spa International", imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AiIM2cipBeiV5T0azsou56MBZ1/professional-portrait-of-a-strategic-wom-1773069048517-5ff190d5.png", imageAlt: "Lisa Chen"},
|
||||
{
|
||||
id: "6", title: "Future-Ready Operations", quote:
|
||||
"In a rapidly evolving market, Luxeria keeps us ahead of the curve. Their AI solutions are scalable, intuitive, and genuinely transformative for luxury hospitality.", name: "Sebastian Mueller", role: "COO, Schwarzwald Premium Hotels", imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AiIM2cipBeiV5T0azsou56MBZ1/professional-headshot-of-a-distinguished-1773069048378-35501d19.png", imageAlt: "Sebastian Mueller"},
|
||||
]}
|
||||
kpiItems={[
|
||||
{ value: "350%+", label: "Average Revenue Growth" },
|
||||
{ value: "89%", label: "Guest Satisfaction Increase" },
|
||||
{ value: "90 Days", label: "Time to ROI" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -236,24 +275,21 @@ export default function HomePage() {
|
||||
description="Luxury hospitality leaders worldwide trust Luxeria to power their digital transformation and competitive advantage."
|
||||
tag="Partners"
|
||||
tagIcon={Star}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
"Michelin Guide", "Relais & Châteaux", "Forbes Travel", "Virtuoso", "Luxury Institute", "Les Clefs d'Or", "Five Star Alliance", "Condé Nast Traveler"]}
|
||||
logos={[
|
||||
"http://img.b2bpic.net/free-vector/city-stamps-collection-retro-style_23-2147769278.jpg", "http://img.b2bpic.net/free-vector/luxury-perfume-logo_23-2148448611.jpg", "http://img.b2bpic.net/free-vector/logos-collection-with-vintage-luxury-style_23-2147842744.jpg", "http://img.b2bpic.net/free-vector/logos-collection-with-vintage-luxury-style_23-2147842742.jpg", "http://img.b2bpic.net/free-vector/gradient-oasis-logo-template_23-2149402956.jpg", "http://img.b2bpic.net/free-vector/gradient-law-firm-identity-card-template_23-2149326761.jpg", "http://img.b2bpic.net/free-vector/hand-drawn-flat-design-power-outage-labels_23-2149253384.jpg", "http://img.b2bpic.net/free-photo/flat-lay-travel-message-with-blue-background_23-2148436313.jpg"]}
|
||||
speed={45}
|
||||
showCard={true}
|
||||
tagAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
logoText="Luxeria"
|
||||
columns={footerColumns}
|
||||
/>
|
||||
<FooterLogoEmphasis logoText="Luxeria" columns={footerColumns} />
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #fbfaff;
|
||||
--card: #f7f5ff;
|
||||
--foreground: #0f0022;
|
||||
--primary-cta: #8b5cf6;
|
||||
--background: #1a1a2e;
|
||||
--card: #242a3e;
|
||||
--foreground: #e8e8f0;
|
||||
--primary-cta: #3d5a80;
|
||||
--primary-cta-text: #fbfaff;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta: #242a3e;
|
||||
--secondary-cta-text: #0f0022;
|
||||
--accent: #d8cef5;
|
||||
--background-accent: #c4a8f9;
|
||||
--accent: #5a7fa0;
|
||||
--background-accent: #2d3f52;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user