Add src/app/contact/page.tsx

This commit is contained in:
2026-05-09 15:15:20 +00:00
parent 2d98119dc5
commit b64bdaa779

42
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,42 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
export default function ContactPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Services", id: "features" },
{ name: "Contact", id: "/contact" },
]}
brandName="Bangkok Home Service"
/>
<div className="pt-32 pb-20">
<ContactCTA
tag="Contact"
title="Get in Touch"
description="Our dedicated team is ready to assist you. Email us at thailandvista7@gmail.com or call 0811979133 for inquiries."
buttons={[
{ text: "Email Us", href: "mailto:thailandvista7@gmail.com" },
{ text: "Call Now", href: "tel:0811979133" }
]}
background={{ variant: "radial-gradient" }}
/>
</div>
<FooterLogoReveal
logoText="Bangkok Home Service"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
/>
</ReactLenis>
</ThemeProvider>
);
}