export interface NavItem {
  id: number;
  title: string;
  url: string;
}

export const navItems: NavItem[] = [
  { id: 1, title: "Home", url: "/" },
  { id: 2, title: "About", url: "/about" },
  { id: 3, title: "Projects", url: "/project" },
  { id: 4, title: "Blog", url: "/blog" },
  { id: 5, title: "Help", url: "/help" },
  { id: 6, title: "Contact", url: "/contact" },
];
