achat-maison-albi-fr/src/data_files/constants.ts

51 lines
1.5 KiB
TypeScript
Raw Normal View History

2025-01-05 02:33:58 +01:00
import ogImageSrc from "@images/vue-de-la-piscine.jpg";
2025-01-05 15:05:22 +01:00
import type { WebPage, WebSite, WithContext } from "schema-dts";
2024-03-27 16:57:42 -05:00
export const SITE = {
2025-01-05 02:33:58 +01:00
title: "Maison à vendre à Albi",
tagline: "La maison familiale par excellence",
description: "Belle maison individuelle de 177 m2 dans un écrin de verdure sur un terrain de 980 m2, non-mitoyenne, avec piscine, grande terrasse et garage. Sans vis-à-vis.",
description_short: "Belle maison individuelle de 177 m2 dans un écrin de verdure sur un terrain de 980 m2.",
url: "https://achat-maison-albi.fr",
author: "Jalil Arfaoui",
2024-03-27 16:57:42 -05:00
};
2025-01-05 15:05:22 +01:00
export const websiteStructuredDescription = {
"@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.",
} satisfies WebSite
const defaultStructuredData = {
"@context": "https://schema.org",
"@type": "WebPage",
inLanguage: "fr-FR",
"@id": SITE.url,
url: SITE.url,
name: SITE.title,
2024-03-27 16:57:42 -05:00
description: SITE.description,
2025-01-05 15:05:22 +01:00
isPartOf: {
"@type": "WebSite",
2024-03-27 16:57:42 -05:00
url: SITE.url,
name: SITE.title,
description: SITE.description,
},
2025-01-05 15:05:22 +01:00
} satisfies WithContext<WebPage>
export const SEO = {
title: SITE.title,
description: SITE.description,
structuredData: defaultStructuredData,
2024-03-27 16:57:42 -05:00
};
export const OG = {
2025-01-05 02:33:58 +01:00
locale: "fr_FR",
2024-03-27 16:57:42 -05:00
type: "website",
url: SITE.url,
2025-01-05 02:33:58 +01:00
title: `${SITE.title}`,
description: `${SITE.description}`,
image: ogImageSrc,
2024-03-27 16:57:42 -05:00
};