Components

import CardNav from '@/components/ui/card-nav'
export default function CardNavApp (){
const items = [
{
label: "About",
bgColor: "#0D0716",
textColor: "#fff",
links: [
{ label: "Company", ariaLabel: "About Company" },
{ label: "Careers", ariaLabel: "About Careers" }
]
},
{
label: "Projects",
bgColor: "#170D27",
textColor: "#fff",
links: [
{ label: "Featured", ariaLabel: "Featured Projects" },
{ label: "Case Studies", ariaLabel: "Project Case Studies" }
]
},
{
label: "Contact",
bgColor: "#271E37",
textColor: "#fff",
links: [
{ label: "Email", ariaLabel: "Email us" },
{ label: "Twitter", ariaLabel: "Twitter" },
{ label: "LinkedIn", ariaLabel: "LinkedIn" }
]
}
];
return (
<CardNav
logoAlt="L"
items={items}
baseColor="#fff"
menuColor="#000"
buttonBgColor="#111"
buttonTextColor="#fff"
ease="power3.out"
/>
);
};