Update app/contact/page.tsx

This commit is contained in:
kleap-admin 2026-01-18 18:29:10 +00:00
parent 9802b2cb2c
commit 98a68f83f3
1 changed files with 11 additions and 0 deletions

11
app/contact/page.tsx Normal file
View File

@ -0,0 +1,11 @@
import { ContactSection } from "@/components/contact-section";
import { Footer } from "@/components/footer";
export default function ContactPage() {
return (
<main className="pt-20">
<ContactSection />
<Footer />
</main>
);
}