diff --git a/public/assets/images/back-side.jfif b/public/assets/images/back-side.jfif
new file mode 100644
index 0000000..32c39ab
Binary files /dev/null and b/public/assets/images/back-side.jfif differ
diff --git a/public/assets/images/banglore-nit-view.mp4 b/public/assets/images/banglore-nit-view.mp4
new file mode 100644
index 0000000..928b199
Binary files /dev/null and b/public/assets/images/banglore-nit-view.mp4 differ
diff --git a/public/assets/images/bottom-side.jfif b/public/assets/images/bottom-side.jfif
new file mode 100644
index 0000000..4a46008
Binary files /dev/null and b/public/assets/images/bottom-side.jfif differ
diff --git a/public/assets/images/front-side.jfif b/public/assets/images/front-side.jfif
new file mode 100644
index 0000000..778b0e2
Binary files /dev/null and b/public/assets/images/front-side.jfif differ
diff --git a/public/assets/images/left-side.jfif b/public/assets/images/left-side.jfif
new file mode 100644
index 0000000..4b4dacd
Binary files /dev/null and b/public/assets/images/left-side.jfif differ
diff --git a/public/assets/images/right-side.jfif b/public/assets/images/right-side.jfif
new file mode 100644
index 0000000..fc345a3
Binary files /dev/null and b/public/assets/images/right-side.jfif differ
diff --git a/public/assets/images/top-side.jfif b/public/assets/images/top-side.jfif
new file mode 100644
index 0000000..d02fb48
Binary files /dev/null and b/public/assets/images/top-side.jfif differ
diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
new file mode 100644
index 0000000..1f4cea3
--- /dev/null
+++ b/src/app/about/page.tsx
@@ -0,0 +1,34 @@
+import Header from "@/components/Header";
+import InnerBanner from "@/components/InnerBanner";
+import About from "@/components/About";
+import WhyChooseUs from "@/components/WhyChooseUs";
+import Testimonials from "@/components/Testimonials";
+import Footer from "@/components/Footer";
+import { Metadata } from "next";
+
+export const metadata: Metadata = {
+ title: "About Us | Sky and Soil Real Estate",
+ description: "Learn about Sky and Soil's mission to connect you with nature-inspired living spaces. We are authorized partners for Godrej Properties.",
+};
+
+export default function AboutPage() {
+ return (
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/compare/page.tsx b/src/app/compare/page.tsx
new file mode 100644
index 0000000..99dfc8b
--- /dev/null
+++ b/src/app/compare/page.tsx
@@ -0,0 +1,11 @@
+import CompareClient from "@/components/CompareClient";
+import { Metadata } from "next";
+
+export const metadata: Metadata = {
+ title: "Compare Properties | Sky and Soil Real Estate",
+ description: "Compare up to 4 properties side-by-side to find the perfect home that meets your needs. Analyze price, amenities, and specifications.",
+};
+
+export default function ComparePage() {
+ return ;
+}
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
new file mode 100644
index 0000000..c378f9a
--- /dev/null
+++ b/src/app/contact/page.tsx
@@ -0,0 +1,30 @@
+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 (
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 288ecea..2219019 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -8,11 +8,18 @@ const inter = Inter({
});
export const metadata: Metadata = {
- title: "Aurora Springs Realty | Redefining Modern Living",
- description: "Premium villas, plots, and apartments in North Bengaluru. Experience luxury living with Aurora Springs Realty.",
+ title: {
+ default: "Sky and Soil | Premium Real Estate in North Bengaluru",
+ template: "%s | Sky and Soil"
+ },
+ description: "Discover luxury apartments, villas, and plots in North Bengaluru. Sky and Soil connects you with nature-inspired living spaces and Godrej Properties.",
+ keywords: ["Real Estate", "Bengaluru", "Luxury Homes", "Godrej Properties", "North Bengaluru", "Villas", "Apartments"],
};
import { ThemeProvider } from "@/components/ThemeProvider";
+import { CompareProvider } from "@/context/CompareContext";
+import CompareBar from "@/components/CompareBar";
+import MouseAnimation from "@/components/MouseAnimation";
export default function RootLayout({
children,
@@ -30,7 +37,11 @@ export default function RootLayout({
enableSystem
disableTransitionOnChange
>
- {children}
+
+ {children}
+
+
+