aboutsummaryrefslogtreecommitdiff
path: root/apps/website/src/components/shared/SEO.astro
diff options
context:
space:
mode:
Diffstat (limited to 'apps/website/src/components/shared/SEO.astro')
-rw-r--r--apps/website/src/components/shared/SEO.astro22
1 files changed, 11 insertions, 11 deletions
diff --git a/apps/website/src/components/shared/SEO.astro b/apps/website/src/components/shared/SEO.astro
index 6169185..c3b8c52 100644
--- a/apps/website/src/components/shared/SEO.astro
+++ b/apps/website/src/components/shared/SEO.astro
@@ -2,26 +2,26 @@
import smartypants from 'smartypants';
type SEOMetadata = {
- name?: string
- title: string
- description: string
- image?: { src: string, alt: string }
- canonicalURL?: URL | null
- locale?: string
+ name?: string;
+ title: string;
+ description: string;
+ image?: { src: string; alt: string };
+ canonicalURL?: URL | null;
+ locale?: string;
};
type OpenGraph = Partial<SEOMetadata> & {
- type?: string
+ type?: string;
};
type Twitter = Partial<SEOMetadata> & {
- handle?: string
- card?: 'summary' | 'summary_large_image'
+ handle?: string;
+ card?: 'summary' | 'summary_large_image';
};
export type Props = SEOMetadata & {
- og?: OpenGraph
- twitter?: Twitter
+ og?: OpenGraph;
+ twitter?: Twitter;
};
const {