import { Plus } from "lucide-react"; import { Button } from "@/components/ui/button"; import { Card } from "@/components/ui/card"; export default function DashboardPage() { const totalSpaces = 1; // This will be dynamic based on actual spaces const totalVideos = 0; const currentPlan = "Starter"; return (

Dashboard

Overview

Total Videos

{totalVideos}/2

Total Spaces

{totalSpaces}

Current Plan

{currentPlan}

Spaces

G

GeniusGPT

Videos: 0 • Text: 3

); }