2024-02-20 07:47:23 +04:00
|
|
|
// An array of links for navigation bar
|
2024-03-26 01:13:16 +04:00
|
|
|
const navBarLinks = [
|
2024-02-20 07:47:23 +04:00
|
|
|
{ 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
|
2024-03-26 01:13:16 +04:00
|
|
|
const footerLinks = [
|
2024-02-20 07:47:23 +04:00
|
|
|
{
|
2024-03-20 07:46:14 +04:00
|
|
|
section: "Ecosystem",
|
2024-02-20 07:47:23 +04:00
|
|
|
links: [
|
2024-03-26 01:13:16 +04:00
|
|
|
{ name: "Documentation", url: "/welcome-to-docs/" },
|
2024-02-20 07:47:23 +04:00
|
|
|
{ name: "Tools & Equipment", url: "/products" },
|
|
|
|
|
{ name: "Construction Services", url: "/services" },
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
section: "Company",
|
|
|
|
|
links: [
|
|
|
|
|
{ name: "About us", url: "#" },
|
2024-03-30 01:18:02 +04:00
|
|
|
{ name: "Blog", url: "/blog" },
|
2024-02-20 07:47:23 +04:00
|
|
|
{ name: "Careers", url: "#" },
|
|
|
|
|
{ name: "Customers", url: "#" },
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
// An object of links for social icons
|
2024-03-26 01:13:16 +04:00
|
|
|
const socialLinks = {
|
2024-03-31 00:48:41 +04:00
|
|
|
facebook: "https://www.facebook.com/",
|
|
|
|
|
x: "https://twitter.com/",
|
2024-02-20 07:47:23 +04:00
|
|
|
github: "https://github.com/mearashadowfax/ScrewFast",
|
2024-03-31 00:48:41 +04:00
|
|
|
google: "https://www.google.com/",
|
|
|
|
|
slack: "https://slack.com/",
|
2024-02-20 07:47:23 +04:00
|
|
|
};
|
2024-03-26 01:13:16 +04:00
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
navBarLinks,
|
|
|
|
|
footerLinks,
|
|
|
|
|
socialLinks,
|
|
|
|
|
};
|