// An array of links for navigation bar export const navBarLinks = [ { name: "Home", url: "/" }, { name: "Products", url: "/products" }, { name: "Services", url: "/services" }, { name: "Blog", url: "/blog" }, { name: "Contact", url: "/contact" }, ]; // An array of links for footer export const footerLinks = [ { section: "Ecosystem", links: [ { name: "Documentation", url: "/en/welcome-to-docs/" }, { name: "Tools & Equipment", url: "/products" }, { name: "Construction Services", url: "/services" }, ], }, { section: "Company", links: [ { name: "About us", url: "#" }, { name: "Blog", url: "#" }, { name: "Careers", url: "#" }, { name: "Customers", url: "#" }, ], }, ]; // An object of links for social icons export const socialLinks = { facebook: "#", x: "#", github: "https://github.com/mearashadowfax/ScrewFast", google: "#", slack: "#", };