import Link from "next/link"; import Image from "next/image"; import Contact from "@/component/Contact"; export default function BlogPage() { const blogs = [ { img: "/assets/images/blog1.png", date: "12 Feb 2026", title: "Top Kitchen Remodeling Ideas to Maximize Space & Style", }, { img: "/assets/images/blog2.png", date: "18 Feb 2026", title: "How Smart Home Technology is Transforming Modern Living", }, { img: "/assets/images/blog3.png", date: "25 Feb 2026", title: "Sunroom Design Ideas to Brighten Your Living Space", }, { img: "/assets/images/blog4.png", date: "03 Mar 2026", title: "Outdoor Living Spaces: Create the Perfect Backyard Retreat", }, { img: "/assets/images/blog1.png", date: "10 Mar 2026", title: "Budget-Friendly Renovation Tips Without Compromising Quality", }, { img: "/assets/images/blog4.png", date: "18 Mar 2026", title: "Step-by-Step Guide to Planning Your Dream Home Remodel", }, ]; return ( <> {/* HERO SECTION */}
Our Blogs

Expert Ideas, Trends & Guides for Smarter Living

Stay updated with the latest trends in home remodeling, smart living, and modern design. Our blog brings you expert insights.

Schedule Consultation
{/* BLOG GRID */}
Insights & Inspiration

Expert Ideas for Smarter Home Transformations

{blogs.map((blog, index) => ( {blog.title}
calendar{" "} {blog.date} • HouseCoin Team

{blog.title}

))}
); }