Auto commit for build : 136

commit by: ayoub <hassani.ayoub@gmail.com>

 with message : update navbar
This commit is contained in:
ayoub 2025-05-08 00:21:17 +02:00
parent 49b4f84b55
commit 4f3457fbf2
2 changed files with 7 additions and 1 deletions

View File

@ -1,10 +1,16 @@
import React from 'react'; import React from 'react';
import NavbarItem from './NavbarItem';
interface NavbarLogo { interface NavbarLogo {
src: any; src: any;
slogan: string; slogan: string;
} }
interface NavbarItem {
src: any;
label: string;
}
interface NavbarProps { interface NavbarProps {
logo?: NavbarLogo; logo?: NavbarLogo;
items?: NavbarItem[];
} }
declare const Navbar: React.FC<NavbarProps>; declare const Navbar: React.FC<NavbarProps>;
export default Navbar; export default Navbar;

File diff suppressed because one or more lines are too long