export interface LandingNavItem {
  label: string;
  to: string;
  offset?: number;
}

export interface LandingMenuData {
  navItems: LandingNavItem[];
}

export const landingMenuData: LandingMenuData = {
  navItems: [
    { label: "Home", to: "home", offset: -80 },
    { label: "About", to: "about", offset: -80 },
    { label: "Solutions", to: "solutions", offset: -150 },
    { label: "Works", to: "works", offset: -180 },
    { label: "Resources", to: "resources", offset: -150 },
    { label: "Pricing", to: "pricing", offset: -80 },
  ],
};
