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