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 ( + + + + +
+ +
+ +
+ +
+ + +
+
+ ); +}