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="--junicode" preload /> 14 <slot name="head" /> 15 </head> 16 <body> 17 <slot /> 18 </body> 19</html>