In response to the changes made to the directory structure of the project, the code has been refactored to adjust image import paths across various sections. It also involves reorganizing components into appropriate folders based on their roles in the application. Along with this, a new utility file for navigation links has been introduced, and configurations for authorizing remote images have been added to Astro configuration file, suggesting an enhancement in SEO performance.
36 lines
914 B
TypeScript
36 lines
914 B
TypeScript
// 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: "Product",
|
|
links: [
|
|
{ name: "Tools & Equipment", url: "/products" },
|
|
{ name: "Construction Services", url: "/services" },
|
|
{ name: "Pricing", url: "/#" },
|
|
],
|
|
},
|
|
{
|
|
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: "#",
|
|
};
|