"use client"; import { useState } from "react"; import { useRouter, useSearchParams } from "next/navigation"; interface BengaluruHeaderProps { filteredCount: number; totalCount: number; } export default function BengaluruHeader({ filteredCount, totalCount }: BengaluruHeaderProps) { const [isExpanded, setIsExpanded] = useState(false); const router = useRouter(); const searchParams = useSearchParams(); const currentSearch = searchParams.get("search"); const fullText = "Browse real estate for sale in Bengaluru. Properties including flats, villas, and plots from trusted builders. Whether you're looking for luxurious or budget-friendly property in Bengaluru, sky&soil offers a wide range of options to suit every need. Find properties for sale in Bengaluru. Residential options with verified details, photos, and competitive pricing. Prices ₹1.5Cr - ₹5.0Cr. RERA-registered homes in gated communities, with amenities such as Swimming Pool, Gym, Clubhouse, Kids' Play Area, 24x7 Security, and Power Backup. Legal due diligence support available. 356+ options across top communities. Prime locations with IT connectivity and social infrastructure. View accurate prices, configurations, photos, and neighbourhood insights to compare options and book confidently with sky&soil."; const toggleReadMore = () => setIsExpanded(!isExpanded); const handleModernSpaacesClick = () => { // Toggle: if already selected, clear it (optional, but good UX). Or just set it. // User asked for "click that button morden this ... show morden space preprtis only filter" router.push("?search=Modern+Spaaces", { scroll: false }); }; const isModernSpaacesActive = currentSearch === "Modern Spaaces"; return (

Property for Sale in Bengaluru

Showing 1-{filteredCount} of {totalCount} Properties | Last Updated: {new Date().toLocaleDateString('en-GB', { day: 'numeric', month: 'short', year: 'numeric' })}

{isExpanded ? fullText : `${fullText.substring(0, 230)}...`}

); }