diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index b421adb..60e4b4e 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -2,148 +2,85 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactForm from '@/components/sections/contact/ContactForm'; -import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; -import FooterBase from '@/components/sections/footer/FooterBase'; -import HeroContact from '@/components/sections/hero/HeroContact'; + +// Correct imports based on LOCKED_SELECTION and registry import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import { ArrowRight, Mail, Phone, Pin, Sparkles } from "lucide-react"; +import ContactFaq from '@/components/sections/contact/ContactFaq'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +// Lucide icons for ContactFaq ctaIcon +import { MessageCircle } from "lucide-react"; export default function LandingPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Services", id: "/services" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" } + ]; + + const themeProps = { + defaultButtonVariant: "bounce-effect", defaultTextAnimation: "background-highlight", borderRadius: "soft", contentWidth: "smallMedium", sizing: "mediumLargeSizeLargeTitles", background: "circleGradient", cardStyle: "soft-shadow", primaryButtonStyle: "radial-glow", secondaryButtonStyle: "radial-glow", headingFontWeight: "normal" + }; + return ( - + - + -
- -
+
+ +
-
- -
- -
- -
- - +
);