export type FooterLink = { name: string; path: string; id?: string };
export const MainLinks: FooterLink[] = [
  { name: "home", path: "/" },
  { name: "books", path: "/books" },
  { name: "about", path: "/about" },
  { name: "faqs", path: "/faqs" },
  { name: "courses", path: "/courses" },
  { name: "contact", path: "/contact" },
];
