diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index e438f0e..077e922 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,115 +1,92 @@ "use client"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial'; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import Link from 'next/link'; // Necessary for internal navigation in navbar/footer - -// Nav items for NavbarLayoutFloatingInline and FooterBaseCard -const navItems = [ - { name: "Home", href: "/" }, - { name: "About Us", href: "/about" }, - { name: "Services", href: "/services" }, - { name: "Tenders", href: "/tenders" }, - { name: "Contact", href: "/contact" }, -]; - -const footerColumns = [ - { - title: "Quick Links", items: [ - { label: "Home", href: "/" }, - { label: "About Us", href: "/about" }, - { label: "Services", href: "/services" }, - { label: "Tenders & Procurement", href: "/tenders" }, - { label: "Contact", href: "/contact" }, - ], - }, - { - title: "Services", items: [ - { label: "General Supplies", href: "/services#general-supplies" }, - { label: "Logistics & Transport", href: "/services#logistics-transport" }, - { label: "Aviation & Technical", href: "/services#aviation-technical" }, - { label: "ICT & Digital", href: "/services#ict-digital" }, - { label: "Construction & Maintenance", href: "/services#construction-maintenance" }, - { label: "Consultancy", href: "/services#consultancy-project" }, - ], - }, - { - title: "Contact Info", items: [ - { label: "Nairobi, Kenya", href: "/contact" }, - { label: "+254 7XX XXX XXX", href: "/contact" }, - { label: "info@carlstraaero.com", href: "/contact" }, - ], - }, -]; +import { ThemeProvider } from "@/components/theme-provider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard'; +import ContactForm from '@/components/form/ContactForm'; +import { Home, Phone, Mail, User, Shield, Sparkles } from "lucide-react"; export default function ContactPage() { + const companyDetails = [ + { label: "Physical Address", value: "123 Main St, Anytown, CA 90210", icon: Home }, + { label: "Postal Address", value: "PO Box 123, Anytown, CA 90210", icon: Home }, + { label: "Phone", value: "+1 (555) 123-4567", icon: Phone }, + { label: "Email", value: "info@example.com", icon: Mail }, + { label: "Directors", value: "John Doe, Jane Smith", icon: User }, + { label: "KRA PIN", value: "A000000000Z", icon: Shield }, + { label: "Registration Number", value: "CN202300001", icon: Shield } + ]; + return ( -