"use client"; import { motion } from "framer-motion"; import { Calendar, ArrowRight, User } from "lucide-react"; import { Button } from "@/components/ui/button"; const BLOGS = [ { title: "Why CRM is Essential for Scaling Modern Businesses", description: "Discover how CRM solutions boost growth, streamline communication & maximise revenue.", author: "Sandip Chowdhury", date: "Dec 05, 2025", image: "https://images.unsplash.com/photo-1556155092-8707de31f9c4?w=800&q=80", readTime: "5 min read", }, { title: "How Automation Improves Sales Team Productivity", description: "Learn why automation is becoming a must-have feature for sales operations.", author: "Priya Sharma", date: "Nov 28, 2025", image: "https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=800&q=80", readTime: "4 min read", }, { title: "Top CRM Trends to Watch Out in 2026", description: "AI-driven CRMs, predictive analytics & more – see what the future holds.", author: "Arjun Patel", date: "Oct 15, 2025", image: "https://images.unsplash.com/photo-1533750349088-cd871a92f312?w=800&q=80", readTime: "6 min read", }, ]; export default function BlogPage() { return (
{/* HERO */}
Insights & Resources for Your Growth

Explore the latest blogs, guides, and articles to help your business scale smarter.

{/* Blog List */}
{BLOGS.map((blog, i) => (
{blog.title}

{blog.title}

{blog.description}

{blog.author} {blog.date}
{blog.readTime}
))}
{/* CTA */}
Want More Industry Insights?

Subscribe to our newsletter and stay updated with the latest trends.

); }