"use client"; import styles from "./logo.module.scss"; import { usePathname } from "next/navigation"; export const Logo = () => { // Check if the current page is the index page const isIndexPage = usePathname() === "/"; return (
); }; export const LogoText = () => { // Check if the current page is the index page const isIndexPage = usePathname() === "/"; return (
Chateau Neuf
); }; export const LogoIcon = ({ face }: { face?: "left" | "right" }) => { return (
); }; export const LogoNeuf = () => { return (
); };