31 lines
1015 B
TypeScript
31 lines
1015 B
TypeScript
import Header from "@/components/Header";
|
|
import InnerBanner from "@/components/InnerBanner";
|
|
import ContactCTA from "@/components/ContactCTA";
|
|
import Footer from "@/components/Footer";
|
|
import { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Contact Us | Sky and Soil Real Estate",
|
|
description: "Get in touch with Sky and Soil for inquiries about our premium properties in North Bengaluru. We are here to help you find your dream home.",
|
|
};
|
|
|
|
export default function ContactPage() {
|
|
return (
|
|
<main className="min-h-screen bg-white dark:bg-black">
|
|
<Header />
|
|
<InnerBanner
|
|
title="Contact Us"
|
|
subtitle="Get in touch with our team for any inquiries"
|
|
breadcrumbs={[
|
|
{ label: "Home", href: "/" },
|
|
{ label: "Contact" }
|
|
]}
|
|
/>
|
|
<div>
|
|
<ContactCTA />
|
|
</div>
|
|
<Footer />
|
|
</main>
|
|
);
|
|
}
|