22 lines
818 B
Plaintext
22 lines
818 B
Plaintext
---
|
|
import { ViewTransitions } from 'astro:transitions';
|
|
import SEO, { type Props as SEOProps } from './SEO.astro';
|
|
import { SiteTitle, SiteDescription } from '../consts';
|
|
import favicon from '../assets/favicon.svg';
|
|
|
|
export type Props = Partial<SEOProps>;
|
|
const { title = SiteTitle, name = SiteTitle, description = SiteDescription, ...seo } = Astro.props;
|
|
---
|
|
|
|
<SEO {title} {description} {name} {...seo} />
|
|
<link rel="icon" type="image/svg" href={favicon.src} />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Source+Code+Pro&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
|
|
<ViewTransitions />
|