1--- 2import { Font } from "astro:assets"; 3import "$/styles/base.css"; 4 5const { title = "fanfics" } = Astro.props; 6--- 7<html lang="en"> 8 <head> 9 <meta charset="utf-8" /> 10 <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> 11 <meta name="viewport" content="width=device-width" /> 12 <title>{title}</title> 13 <Font cssVariable="--atkinson" preload /> 14 <Font cssVariable="--dyslexic" preload /> 15 <Font cssVariable="--plex-mono" preload /> 16 <Font cssVariable="--plex-serif" preload /> 17 <slot name="head" /> 18 </head> 19 <body> 20 <slot /> 21 </body> 22</html>