diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index d083331..dfe31c0 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -3,8 +3,7 @@
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
-import ContactCenter from "@/components/sections/contact/ContactCenter";
-import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
+import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Mail, Phone, MapPin, Clock } from "lucide-react";
@@ -57,21 +56,6 @@ export default function ContactPage() {
},
];
- const contactMetrics = [
- {
- id: "email", icon: Mail,
- title: "Email Us", value: "info@milestones.co.th"},
- {
- id: "phone", icon: Phone,
- title: "Call Us", value: "+66 2 123 4567"},
- {
- id: "location", icon: MapPin,
- title: "Visit Us", value: "Bangkok, Thailand"},
- {
- id: "hours", icon: Clock,
- title: "Business Hours", value: "Mon-Fri 8:00-18:00"},
- ];
-
return (