diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index d46afaf..22d0d61 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -4,21 +4,22 @@ import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
+import ContactForm from "@/components/form/ContactForm";
import FooterSimple from "@/components/sections/footer/FooterSimple";
-import { Zap } from "lucide-react";
+import { Zap, Mail } from "lucide-react";
export default function ContactPage() {
const navItems = [
- { name: "How It Works", id: "how-it-works" },
- { name: "Services", id: "services" },
- { name: "Pricing", id: "pricing" },
- { name: "Contact", id: "contact" },
+ { name: "Home", id: "/" },
+ { name: "How It Works", id: "/how-it-works" },
+ { name: "Services", id: "/services" },
+ { name: "Pricing", id: "/pricing" },
+ { name: "Contact", id: "/contact" },
];
const footerColumns = [
{
- title: "Product",
- items: [
+ title: "Product", items: [
{ label: "Features", href: "#" },
{ label: "Pricing", href: "/pricing" },
{ label: "Security", href: "#" },
@@ -26,8 +27,7 @@ export default function ContactPage() {
],
},
{
- title: "Company",
- items: [
+ title: "Company", items: [
{ label: "About", href: "/about" },
{ label: "Blog", href: "#" },
{ label: "Contact", href: "/contact" },
@@ -35,8 +35,7 @@ export default function ContactPage() {
],
},
{
- title: "Industries",
- items: [
+ title: "Industries", items: [
{ label: "Dental Practices", href: "/industries" },
{ label: "Salons & Spas", href: "/industries" },
{ label: "Restaurants", href: "/industries" },
@@ -44,8 +43,7 @@ export default function ContactPage() {
],
},
{
- title: "Legal",
- items: [
+ title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" },
@@ -70,7 +68,7 @@ export default function ContactPage() {