achat-maison-albi-fr/src/pages/fr/contact.astro
Emil Gulamov e57a205784 Refactor imports to utilize absolute paths
This commit changes all project imports to use absolute paths instead of relative ones. In addition, the 'tsconfig.json' has been updated to recognize new paths, aiding in easier project navigation and improved readability. The implemented changes result in cleaner imports and a more comprehensible project structure.
2024-04-17 18:25:49 +04:00

30 lines
988 B
Text

---
// Import the necessary components
import MainLayout from "@/layouts/MainLayout.astro";
import ContactSection from "@components/sections/fr/ContactSection_fr.astro";
---
<!--Utilizing MainLayout for the outer layout of the page, and defining meta for SEO purposes-->
<MainLayout
title="Contact | ScrewFast"
lang="fr"
structuredData={{
"@context": "https://schema.org",
"@type": "WebPage",
"@id": "https://screwfast.uk/contact",
url: "https://screwfast.uk/contact",
name: "Contact Us | ScrewFast",
description:
"Have questions or want to discuss a project? Reach out, and let's craft the perfect solution with our tools and services.",
isPartOf: {
"@type": "WebSite",
url: "https://screwfast.uk",
name: "ScrewFast",
description:
"ScrewFast offers top-tier hardware tools and expert construction services to meet all your project needs.",
},
inLanguage: "en-US",
}}
>
<ContactSection />
</MainLayout>