"use client"; import React from "react"; import Link from "next/link"; import { Sparkles } from "lucide-react"; import { cn } from "@/lib/utils"; interface LogoProps { variant?: "light" | "dark"; className?: string; linkTo?: string; } export default function Logo({ variant = "light", className, linkTo = "/dashboard" }: LogoProps) { const textColor = variant === "light" ? "text-white" : "text-gray-900"; const iconColor = variant === "light" ? "text-white/80" : "text-[#5146E5]"; const content = (
Oliver DeckForge AI Presentations
); if (linkTo) { return {content}; } return content; }