diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index 4c0ecac..2805f98 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -2,8 +2,8 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
-import ContactCTA from "@/components/sections/contact/ContactCTA";
-import FaqSplitText from "@/components/sections/faq/FaqSplitText";
+import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll";
+import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { Phone } from "lucide-react";
@@ -18,8 +18,7 @@ export default function ContactPage() {
const footerColumns = [
{
- title: "Company",
- items: [
+ title: "Company", items: [
{ label: "Home", href: "/" },
{ label: "About Us", href: "/about" },
{ label: "Services", href: "/services" },
@@ -27,8 +26,7 @@ export default function ContactPage() {
],
},
{
- title: "Contact",
- items: [
+ title: "Contact", items: [
{ label: "Phone: 04 234 4002", href: "tel:+97142344002" },
{ label: "WhatsApp", href: "https://wa.me/97142344002" },
{ label: "Email Us", href: "/contact" },
@@ -36,8 +34,7 @@ export default function ContactPage() {
],
},
{
- title: "Services",
- items: [
+ title: "Services", items: [
{ label: "Typing Services", href: "/services" },
{ label: "Document Assistance", href: "/services" },
{ label: "Visa Support", href: "/services" },
@@ -64,71 +61,39 @@ export default function ContactPage() {