diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index b0029c3..23867cc 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -3,9 +3,9 @@ import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; -import ContactFaq from "@/components/sections/contact/ContactFaq"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterMedia from "@/components/sections/footer/FooterMedia"; -import { Phone } from "lucide-react"; +import { Phone, Mail, MapPin } from "lucide-react"; export default function ContactPage() { const navItems = [ @@ -18,8 +18,7 @@ export default function ContactPage() { const footerColumns = [ { - title: "Hotel", - items: [ + title: "Hotel", items: [ { label: "Rooms", href: "/rooms" }, { label: "Restaurant", href: "/restaurant" }, { label: "Amenities", href: "/rooms" }, @@ -27,8 +26,7 @@ export default function ContactPage() { ], }, { - title: "About", - items: [ + title: "About", items: [ { label: "Our Story", href: "/about" }, { label: "Dilla City", href: "/about" }, { label: "Gedeo Zone", href: "/about" }, @@ -36,8 +34,7 @@ export default function ContactPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Booking Terms", href: "#" }, @@ -64,36 +61,19 @@ export default function ContactPage() {
-