31 lines
1007 B
TypeScript
31 lines
1007 B
TypeScript
import Header from "@/components/Header";
|
|
import InnerBanner from "@/components/InnerBanner";
|
|
import Lifestyle from "@/components/Lifestyle";
|
|
import Footer from "@/components/Footer";
|
|
import { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Lifestyle | Sky and Soil Real Estate",
|
|
description: "Experience the Aurora Lifestyle with Sky and Soil. Discover world-class amenities, green spaces, and a community designed for luxury living.",
|
|
};
|
|
|
|
export default function LifestylePage() {
|
|
return (
|
|
<main className="min-h-screen bg-white">
|
|
<Header />
|
|
<InnerBanner
|
|
title="Lifestyle"
|
|
subtitle="Experience the perfect blend of comfort and luxury"
|
|
breadcrumbs={[
|
|
{ label: "Home", href: "/" },
|
|
{ label: "Lifestyle" }
|
|
]}
|
|
/>
|
|
<div>
|
|
<Lifestyle />
|
|
</div>
|
|
<Footer />
|
|
</main>
|
|
);
|
|
}
|