--- // Import the necessary dependencies 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"; // Define the variables that will be used in this component 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 for Product section const product: Links[] = [ { title: "Tools & Equipment", url: "#", }, { title: "Construction Services", url: "/services", }, { title: "Pricing", url: "#", }, ]; // An array of links for Company section const company: Links[] = [ { title: "About us", url: "#", }, { title: "Blog", url: "/blog", }, { title: "Careers", url: "#", }, { title: "Customers", url: "#", }, ]; ---