15 lines
460 B
JavaScript
15 lines
460 B
JavaScript
export const footerLinks = [
|
|
{ text: "About Us", href: "/about" },
|
|
{ text: "Our Story", href: "/blog" },
|
|
{ text: "Projects", href: "/projects" },
|
|
{ text: "Terms of Use", href: "/terms" },
|
|
{ text: "Privacy Policy", href: "/terms" },
|
|
];
|
|
|
|
export const footerLinks2 = [
|
|
{ text: "Support", href: "/services" },
|
|
{ text: "Get Started", href: "/docs/intro" },
|
|
{ text: "Documantation", href: "/docs/intro" },
|
|
{ text: "Contact", href: "/contact" },
|
|
];
|