2024-02-13 05:50:53 +04:00
|
|
|
---
|
2024-02-18 07:39:53 +04:00
|
|
|
// Import the necessary components
|
2024-03-25 22:39:36 +04:00
|
|
|
import MainLayout from "@/layouts/MainLayout.astro";
|
2024-06-29 03:38:42 +04:00
|
|
|
import ContactSection from "@components/sections/misc/ContactSection.astro";
|
2024-04-17 18:25:49 +04:00
|
|
|
import { SITE } from "@data/constants";
|
2024-03-27 17:25:34 -05:00
|
|
|
|
|
|
|
|
const pageTitle: string = `Contact | ${SITE.title}`;
|
2024-02-13 05:50:53 +04:00
|
|
|
---
|
|
|
|
|
|
2024-02-18 07:39:53 +04:00
|
|
|
<!--Utilizing MainLayout for the outer layout of the page, and defining meta for SEO purposes-->
|
2024-03-24 17:28:23 +04:00
|
|
|
<MainLayout
|
2024-03-27 17:25:34 -05:00
|
|
|
title={pageTitle}
|
2024-03-24 17:28:23 +04:00
|
|
|
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"
|
|
|
|
|
}}
|
|
|
|
|
>
|
2024-02-14 05:47:32 +04:00
|
|
|
<ContactSection />
|
|
|
|
|
</MainLayout>
|