Change Logo
Change Logo
To change logo : /src/app/(DashboardLayout)/layout/shared/logo/FullLogo.tsx
Put the logo image into the /public/images/logos folder.
'use client'
import React from "react";
import Image from "next/image";
import Logo from "/public/images/logos/dark-logo.svg";
import Logowhite from "/public/images/logos/light-logo.svg";
import Link from "next/link";
const FullLogo = () => {
return (
<Link href="/" >
<Image src={Logo} alt="logo" className="block dark:hidden" />
<Image src={Logowhite} alt="logo" className="hidden dark:block" />
</Link>
);
};
export default FullLogo;