import { Loader2 } from "lucide-react" import { useDashboardStats } from "./hooks" import { EnabledFeaturesCard, GettingStartedCard, HowToCard, BlogPostsCard, WooCommerceNotice, } from "./components" export function Dashboard() { const { stats, loading } = useDashboardStats() if (loading) { return (

Loading dashboard...

) } return (
{/* WooCommerce Requirement Notice */} {/* Welcome Header */}

Welcome to Swift Commerce

Supercharge your WooCommerce store with powerful features. Let's get started!

{/* Main Content Grid - 3 columns */}
{/* Column 1 - Getting Started + Latest Blog Posts */}
{/* Column 2 - How To */}
{/* Column 3 - Enabled Features */}
) }