export interface OnepageMenuItem {
  id: number;
  label: string;
  targetId: string;
}

export const onepageMenuData: OnepageMenuItem[] = [
  { id: 1, label: "Home", targetId: "home" },
  { id: 2, label: "About", targetId: "about" },
  { id: 3, label: "Features", targetId: "features" },
  { id: 4, label: "Pricing", targetId: "pricing" },
  { id: 5, label: "Contact", targetId: "contact" },
];
