diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..cce6a09 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,135 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; + +export default function ContactPage() { + const navItems = [ + { name: "Home", id: "/#hero" }, + { name: "About", id: "/#about" }, + { name: "How It Works", id: "/#features" }, + { name: "Leaderboard", id: "/#products" }, + { name: "Player Reviews", id: "/#testimonials" }, + { name: "FAQ", id: "/#faq" }, + { name: "Contact", id: "/contact" } + ]; + + const navbarButton = { + text: "Start Predicting", href: "/contact" + }; + + const footerColumns = [ + { + title: "Company", items: [ + { label: "About Us", href: "/#about" }, + { label: "Contact Us", href: "/contact" }, + { label: "Privacy Policy", href: "#" } + ] + }, + { + title: "Game", items: [ + { label: "How It Works", href: "/#features" }, + { label: "Leaderboard", href: "/#products" }, + { label: "Rules", href: "/#features" } + ] + }, + { + title: "Support", items: [ + { label: "FAQ", href: "/#faq" }, + { label: "Support", href: "/contact" }, + { label: "Terms of Service", href: "#" } + ] + } + ]; + + const testimonialsData = [ + { + id: "t1", name: "Ahmed Khan", role: "Avid Fan", company: "Football Enthusiast", rating: 5, + imageSrc: "https://img.b2bpic.net/free-photo/young-dark-haired-man-smiling-posing_1407314.jpg?_wi=1" + }, + { + id: "t2", name: "Maria Silva", role: "Casual Player", company: "Prediction Rookie", rating: 5, + imageSrc: "https://img.b2bpic.net/free-photo/young-happy-brunette-girl-denim-jacket_1407315.jpg?_wi=1" + }, + { + id: "t3", name: "Chris Lee", role: "Stats Guru", company: "Analyst by Heart", rating: 5, + imageSrc: "https://img.b2bpic.net/free-photo/young-african-american-man-isolated-blue-background_1407316.jpg?_wi=1" + }, + { + id: "t4", name: "Sophie Dubois", role: "Friendly Competitor", company: "Team Captain", rating: 4, + imageSrc: "https://img.b2bpic.net/free-photo/cheerful-brunette-female-isolated_1407317.jpg?_wi=1" + }, + { + id: "t5", name: "Leo Messi", role: "Legendary Player", company: "Argentina National Team", rating: 5, + imageSrc: "https://img.b2bpic.net/free-photo/messi-ball_1407318.jpg?_wi=1", imageAlt: "Leo Messi testimonial" + } + ]; + + return ( + + + + +
+ +
+ +
+ +
+ + +
+
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 8161857..851b324 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,7 +12,10 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import TextAbout from '@/components/sections/about/TextAbout'; -import { Trophy, Users, ShieldCheck } from "lucide-react"; +import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow'; +import { Trophy, Users, ShieldCheck, Wifi, Car, Cloud, Coffee } from "lucide-react"; export default function LandingPage() { return ( @@ -38,6 +41,15 @@ export default function LandingPage() { name: "About", id: "#about"}, { name: "How It Works", id: "#features"}, + { + name: "Rooms & Rates", id: "#rooms-rates" + }, + { + name: "Gallery", id: "#gallery" + }, + { + name: "Amenities", id: "#amenities" + }, { name: "Leaderboard", id: "#products"}, { @@ -106,6 +118,86 @@ export default function LandingPage() { /> +
+ +
+ + + +
+ +
+