Add src/app/contact/page.tsx
This commit is contained in:
14
src/app/contact/page.tsx
Normal file
14
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<NavbarLayoutFloatingInline navItems={[{name: "About Us", id: "/about"}, {name: "Pricing", id: "/pricing"}, {name: "Contact", id: "/contact"}, {name: "Social Media", id: "/social-media"}]} brandName="NextGenBinCleaning" />
|
||||
<ContactCTA tag="Get in Touch" title="Contact Us" description="Call us at 330-581-5104 or 330-265-5048 to book your service today." buttons={[{text: "Call Now", href: "tel:3305815104"}]} />
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user