Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| cbf0b416ba | |||
| bbd9897386 |
240
src/app/page.tsx
240
src/app/page.tsx
@@ -2,15 +2,15 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
|
||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||
import { ArrowRight } from "lucide-react";
|
||||
import { ArrowRight, Mail, Phone, MapPin } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -31,21 +31,13 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "features",
|
||||
},
|
||||
name: "Services", id: "features"},
|
||||
{
|
||||
name: "Pricing",
|
||||
id: "pricing",
|
||||
},
|
||||
name: "Pricing", id: "pricing"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
brandName="AI-Connect"
|
||||
/>
|
||||
@@ -54,51 +46,28 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
background={{
|
||||
variant: "rotated-rays-animated",
|
||||
}}
|
||||
variant: "rotated-rays-animated"}}
|
||||
title="Transform Hospitality & Education with AI"
|
||||
description="Revolutionize operations with our intelligent AI platform designed for luxury hotels and forward-thinking educational institutions."
|
||||
buttons={[
|
||||
{
|
||||
text: "Get Started",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Get Started", href: "#contact"},
|
||||
{
|
||||
text: "View Platform",
|
||||
href: "#features",
|
||||
},
|
||||
text: "View Platform", href: "#features"},
|
||||
]}
|
||||
carouselItems={[
|
||||
{
|
||||
id: "1",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/digital-environment-scene_23-2151873120.jpg",
|
||||
imageAlt: "AI Hotel & School Interface",
|
||||
},
|
||||
id: "1", imageSrc: "http://img.b2bpic.net/free-photo/digital-environment-scene_23-2151873120.jpg", imageAlt: "AI Hotel & School Interface"},
|
||||
{
|
||||
id: "2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797681.jpg",
|
||||
imageAlt: "Smart Hotel Room",
|
||||
},
|
||||
id: "2", imageSrc: "http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797681.jpg", imageAlt: "Smart Hotel Room"},
|
||||
{
|
||||
id: "3",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/e-learning-education-networking-website-study-concept_53876-167089.jpg",
|
||||
imageAlt: "Virtual Classroom",
|
||||
},
|
||||
id: "3", imageSrc: "http://img.b2bpic.net/free-photo/e-learning-education-networking-website-study-concept_53876-167089.jpg", imageAlt: "Virtual Classroom"},
|
||||
{
|
||||
id: "4",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/representations-user-experience-interface-design_23-2150104471.jpg",
|
||||
imageAlt: "Data Analytics Dashboard",
|
||||
},
|
||||
id: "4", imageSrc: "http://img.b2bpic.net/free-photo/representations-user-experience-interface-design_23-2150104471.jpg", imageAlt: "Data Analytics Dashboard"},
|
||||
{
|
||||
id: "5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/futuristic-technology-concept_23-2151908071.jpg",
|
||||
imageAlt: "Smart Hotel Kiosk",
|
||||
},
|
||||
id: "5", imageSrc: "http://img.b2bpic.net/free-photo/futuristic-technology-concept_23-2151908071.jpg?_wi=1", imageAlt: "Smart Hotel Kiosk"},
|
||||
{
|
||||
id: "6",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/anthropomorphic-robot-that-performs-regular-human-job_23-2151061685.jpg",
|
||||
imageAlt: "Virtual Learning Assistant",
|
||||
},
|
||||
id: "6", imageSrc: "http://img.b2bpic.net/free-photo/anthropomorphic-robot-that-performs-regular-human-job_23-2151061685.jpg", imageAlt: "Virtual Learning Assistant"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -110,9 +79,7 @@ export default function LandingPage() {
|
||||
description="We bridge the gap between technology and service. Our AI-driven suite automates complex processes, allowing you to focus on what matters: your guests and students."
|
||||
buttons={[
|
||||
{
|
||||
text: "Learn Our Story",
|
||||
href: "#",
|
||||
},
|
||||
text: "Learn Our Story", href: "#"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/female-business-leader-collaborative-meeting-feeling-sick-stressed_482257-123888.jpg"
|
||||
/>
|
||||
@@ -126,23 +93,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Guest Personalization",
|
||||
description: "AI-powered recommendations for hotel guests.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blurred-night-lights_23-2148139249.jpg",
|
||||
},
|
||||
id: "1", title: "Guest Personalization", description: "AI-powered recommendations for hotel guests.", imageSrc: "http://img.b2bpic.net/free-photo/blurred-night-lights_23-2148139249.jpg"},
|
||||
{
|
||||
id: "2",
|
||||
title: "Automated Scheduling",
|
||||
description: "Streamlined booking and logistics management.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-man-doing-online-classes-laptop_23-2149114299.jpg",
|
||||
},
|
||||
id: "2", title: "Automated Scheduling", description: "Streamlined booking and logistics management.", imageSrc: "http://img.b2bpic.net/free-photo/senior-man-doing-online-classes-laptop_23-2149114299.jpg"},
|
||||
{
|
||||
id: "3",
|
||||
title: "Personalized Learning",
|
||||
description: "Adaptive content for educational growth.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/students-using-tablets-classroom-interactive-learning_23-2151977875.jpg",
|
||||
},
|
||||
id: "3", title: "Personalized Learning", description: "Adaptive content for educational growth.", imageSrc: "http://img.b2bpic.net/free-photo/students-using-tablets-classroom-interactive-learning_23-2151977875.jpg"},
|
||||
]}
|
||||
title="Smart AI Capabilities"
|
||||
description="Engineered for scalability and efficiency."
|
||||
@@ -156,52 +111,22 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "basic",
|
||||
tag: "Entry",
|
||||
price: "$999/mo",
|
||||
period: "mo",
|
||||
description: "Best for small boutique hotels & local schools.",
|
||||
button: {
|
||||
text: "Get Started",
|
||||
},
|
||||
featuresTitle: "Included Features",
|
||||
features: [
|
||||
"Guest AI Assistant",
|
||||
"Basic Analytics",
|
||||
"Booking Integration",
|
||||
],
|
||||
id: "basic", tag: "Entry", price: "$999/mo", period: "mo", description: "Best for small boutique hotels & local schools.", button: {
|
||||
text: "Get Started"},
|
||||
featuresTitle: "Included Features", features: [
|
||||
"Guest AI Assistant", "Basic Analytics", "Booking Integration"],
|
||||
},
|
||||
{
|
||||
id: "pro",
|
||||
tag: "Advanced",
|
||||
price: "$2,499/mo",
|
||||
period: "mo",
|
||||
description: "Designed for mid-sized operations & academies.",
|
||||
button: {
|
||||
text: "Get Started",
|
||||
},
|
||||
featuresTitle: "Everything in Entry, plus:",
|
||||
features: [
|
||||
"Full AI Automation",
|
||||
"Predictive Analytics",
|
||||
"Priority Support",
|
||||
],
|
||||
id: "pro", tag: "Advanced", price: "$2,499/mo", period: "mo", description: "Designed for mid-sized operations & academies.", button: {
|
||||
text: "Get Started"},
|
||||
featuresTitle: "Everything in Entry, plus:", features: [
|
||||
"Full AI Automation", "Predictive Analytics", "Priority Support"],
|
||||
},
|
||||
{
|
||||
id: "enterprise",
|
||||
tag: "Custom",
|
||||
price: "Custom",
|
||||
period: "quote",
|
||||
description: "Built for large hotel chains & educational networks.",
|
||||
button: {
|
||||
text: "Talk to Sales",
|
||||
},
|
||||
featuresTitle: "Everything in Pro, plus:",
|
||||
features: [
|
||||
"Dedicated AI Infrastructure",
|
||||
"Custom Model Integration",
|
||||
"On-site Consulting",
|
||||
],
|
||||
id: "enterprise", tag: "Custom", price: "Custom", period: "quote", description: "Built for large hotel chains & educational networks.", button: {
|
||||
text: "Talk to Sales"},
|
||||
featuresTitle: "Everything in Pro, plus:", features: [
|
||||
"Dedicated AI Infrastructure", "Custom Model Integration", "On-site Consulting"],
|
||||
},
|
||||
]}
|
||||
title="Transparent AI Solutions"
|
||||
@@ -214,30 +139,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Jenkins",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-with-coffee-cup_23-2149429378.jpg",
|
||||
},
|
||||
id: "1", name: "Sarah Jenkins", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-with-coffee-cup_23-2149429378.jpg"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Dr. Mark Thorne",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teacher-with-arms-crossed_23-2148665896.jpg",
|
||||
},
|
||||
id: "2", name: "Dr. Mark Thorne", imageSrc: "http://img.b2bpic.net/free-photo/teacher-with-arms-crossed_23-2148665896.jpg"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Elise Beaumont",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-man-working-late-office_23-2148991382.jpg",
|
||||
},
|
||||
id: "3", name: "Elise Beaumont", imageSrc: "http://img.b2bpic.net/free-photo/business-man-working-late-office_23-2148991382.jpg"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Robert Klein",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-manager-extending-hand-handshake_1262-3119.jpg",
|
||||
},
|
||||
id: "4", name: "Robert Klein", imageSrc: "http://img.b2bpic.net/free-photo/successful-manager-extending-hand-handshake_1262-3119.jpg"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Dr. Susan Lee",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-using-sign-language-outdoors-work_23-2148740315.jpg",
|
||||
},
|
||||
id: "5", name: "Dr. Susan Lee", imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-using-sign-language-outdoors-work_23-2148740315.jpg"},
|
||||
]}
|
||||
cardTitle="Client Success"
|
||||
cardTag="Testimonials"
|
||||
@@ -246,75 +156,43 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactFaq
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "How does integration work?",
|
||||
content: "Our API connects seamlessly with standard PMS and LMS systems.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Is my data secure?",
|
||||
content: "Security is our priority with enterprise-grade encryption.",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Can I get custom models?",
|
||||
content: "Yes, our enterprise plan includes custom AI model training.",
|
||||
},
|
||||
]}
|
||||
ctaTitle="Ready to Transform?"
|
||||
ctaDescription="Let's build the future of hospitality and education together."
|
||||
ctaButton={{
|
||||
text: "Get Started",
|
||||
}}
|
||||
ctaIcon={ArrowRight}
|
||||
<ContactCenter
|
||||
tag="Contact Us"
|
||||
title="Ready to Transform?"
|
||||
description="Reach out to our experts and let's build the future of hospitality and education together."
|
||||
background={{ variant: "gradient-bars" }}
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/futuristic-technology-concept_23-2151908071.jpg?_wi=2"
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Features",
|
||||
href: "#features",
|
||||
},
|
||||
{
|
||||
label: "Pricing",
|
||||
href: "#pricing",
|
||||
},
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Careers", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Security",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Use",
|
||||
href: "#",
|
||||
},
|
||||
title: "Services", items: [
|
||||
{ label: "Features", href: "#features" },
|
||||
{ label: "Pricing", href: "#pricing" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy", href: "#" },
|
||||
{ label: "Terms", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="AI-Connect"
|
||||
copyrightText="© 2025 | AI-Connect Inc."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user