renew navbar, edit resources page

This commit is contained in:
juancmandev
2024-07-29 15:40:52 -06:00
parent d0ab9db2a8
commit cc65303e3f
12 changed files with 214 additions and 843 deletions

View File

@ -1,35 +0,0 @@
type TNavItem = {
label: string;
to: string;
};
export const navItems: TNavItem[] = [
{
label: "Blog",
to: "/blog",
},
{
label: "Portfolio",
to: "/portfolio",
},
{
label: "Videos",
to: "/videos",
},
{
label: "Microblog",
to: "/microblog",
},
{
label: "Resources",
to: "/resources",
},
{
label: "About",
to: "/about",
},
{
label: "Contact",
to: "/contact",
},
];