--- // Import the necessary dependencies from individual component files import FooterSocialLink from "./ui/links/FooterSocialLink.astro"; import EmailFooterInput from "./ui/forms/input/EmailFooterInput.astro"; // Footer Section Names const sectionOne: string = "Product"; const sectionTwo: string = "Company"; const sectionThree: string = "Stay up to date"; /* `content` variable used to customise the email subscription content text. */ const content: string = "Stay updated with the latest tools and exclusive deals."; /* TypeScript type for links. */ type Links = { title: string; url: string; }; /* An array of links, each being an object that conforms to the above `Links` type. */ const product: Links[] = [ { title: "Tools & Equipment", url: "#", }, { title: "Construction Services", url: "/services", }, { title: "Pricing", url: "#", }, ]; /* An array of links, each being an object that conforms to the above `Links` type. */ const company: Links[] = [ { title: "About us", url: "#", }, { title: "Blog", url: "/blog", }, { title: "Careers", url: "#", }, { title: "Customers", url: "#", }, ]; ---