"use client"; import Button from "../button/Button"; import Logo from "./Logo"; import { cls } from "@/lib/utils"; import { getButtonProps } from "@/lib/buttonUtils"; import { useTheme } from "@/providers/themeProvider/ThemeProvider"; import type { ButtonConfig } from "@/types/button"; interface NavbarStyleMinimalProps { // logoSrc?: string; // logoAlt?: string; brandName?: string; button: ButtonConfig; className?: string; buttonClassName?: string; buttonTextClassName?: string; } const NavbarStyleMinimal = ({ // logoSrc, // logoAlt = "", brandName = "Webild", button, className = "", buttonClassName = "", buttonTextClassName = "", }: NavbarStyleMinimalProps) => { const theme = useTheme(); return ( ); }; export default NavbarStyleMinimal;