"use client"; import Link from "next/link"; import { FloatingHouse, RotatingKey, GrowingBuilding } from "./PropertyAnimations"; import { motion, useScroll, useTransform } from "framer-motion"; import { useRef } from "react"; export default function About() { const containerRef = useRef(null); const { scrollYProgress } = useScroll({ target: containerRef, offset: ["start end", "end start"] }); // Parallax effect: Moving the image vertically as the user scrolls // The image height is significantly larger than the container // We move from 0% (top aligned) to a negative percentage to reveal the bottom const y = useTransform(scrollYProgress, [0, 1], ["0%", "-50%"]); return (
{/* Decorative Animation */}
{/* Text Content */}

Where the Sky Meets
The Soil.

At Sky and Soil, we curate exceptional living spaces that harmonize with nature. As authorized sales partners for Godrej Properties, we bring you the finest homes in Bangalore's most sought-after locations.

Our mission is to connect you with homes that offer not just a roof over your head, but a lifestyle grounded in luxury and elevated by nature. From North Bengaluru to Sarjapur, discover a life of abundance.

Learn More About Us
{/* Parallax Image Container */}
Where Sky Meets Soil
); }