Several component files have been refactored to improve code clarity and ease of maintenance. This includes introducing comprehensive comments explaining the functionality and purpose of sections of the code, as well as leveraging Astro.js for more streamlined data sourcing. The commit also includes the removal of redundant files from the vendor scripts directory as part of a general clean-up, improving overall codebase organization.
13 lines
535 B
Text
13 lines
535 B
Text
---
|
|
// Import the necessary components
|
|
import MainLayout from "../layouts/MainLayout.astro";
|
|
import ContactSection from "../components/ContactSection.astro";
|
|
---
|
|
|
|
<!--Utilizing MainLayout for the outer layout of the page, and defining meta for SEO purposes-->
|
|
<MainLayout
|
|
title="Contact | ScrewFast"
|
|
meta="ScrewFast offers top-tier hardware tools and expert construction services to meet all your project needs. Start exploring and contact our sales team for superior quality and reliability."
|
|
>
|
|
<ContactSection />
|
|
</MainLayout>
|