35 lines
1.0 KiB
TypeScript
35 lines
1.0 KiB
TypeScript
import Header from "@/components/Header";
|
|
import Hero from "@/components/Hero";
|
|
import About from "@/components/About";
|
|
import WhyChooseUs from "@/components/WhyChooseUs";
|
|
import Properties from "@/components/Properties";
|
|
import Lifestyle from "@/components/Lifestyle";
|
|
import Testimonials from "@/components/Testimonials";
|
|
import ContactCTA from "@/components/ContactCTA";
|
|
import Footer from "@/components/Footer";
|
|
|
|
import FAQ from "@/components/FAQ";
|
|
import { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Sky and Soil | Luxury Homes & Premium Real Estate",
|
|
description: "Find your dream home with Sky and Soil. We offer exclusive listings of apartments, villas, and plots in Bangalore's prime locations.",
|
|
};
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main className="min-h-screen bg-white dark:bg-black">
|
|
<Header />
|
|
<Hero />
|
|
<About />
|
|
<WhyChooseUs />
|
|
<Properties layout="slider" />
|
|
<Lifestyle />
|
|
<Testimonials />
|
|
<FAQ />
|
|
<ContactCTA />
|
|
<Footer />
|
|
</main>
|
|
);
|
|
}
|