40 lines
984 B
Plaintext
40 lines
984 B
Plaintext
---
|
|
import { readSingleton } from '@directus/sdk';
|
|
|
|
import HeroSection from '@components/sections/HeroSection.astro';
|
|
import ApplicationSection from '@components/sections/ApplicationSection.astro';
|
|
import BaseLayout from '@layouts/BaseLayout.astro';
|
|
import directus from '@lib/directus';
|
|
|
|
const global = await directus.request(readSingleton('site_global'));
|
|
---
|
|
|
|
<BaseLayout
|
|
title="Applications"
|
|
description={global.about_applications}
|
|
structuredData={{
|
|
'@context': 'https://schema.org',
|
|
'@type': 'WebPage',
|
|
inLanguage: 'en-US',
|
|
'@id': Astro.url.href,
|
|
url: Astro.url.href,
|
|
name: `Applications | ${global.name}`,
|
|
description: global.about_applications,
|
|
isPartOf: {
|
|
'@type': 'WebSite',
|
|
url: global.site_url,
|
|
name: global.name,
|
|
description: global.about,
|
|
},
|
|
}}
|
|
>
|
|
|
|
<HeroSection
|
|
title="Applications"
|
|
subTitle={global.about_applications}
|
|
/>
|
|
|
|
<ApplicationSection className="smooth-reveal-2" />
|
|
|
|
</BaseLayout>
|