"use client" import Link from "next/link" import { FC } from "react" import { ChatbotUISVG } from "../icons/chatbotui-svg" interface BrandProps { theme?: "dark" | "light" } export const Brand: FC = ({ theme = "dark" }) => { return (
Chatbot UI
) }