My personal website
at astro 27 lines 662 B view raw
1--- 2import "@fontsource-variable/josefin-sans"; 3import "@fontsource/fira-sans"; 4import "./src/styles/global.css"; 5interface Props { 6 title: string; 7} 8 9const { title } = Astro.props; 10--- 11 12<!doctype html> 13<html lang="en"> 14 <head> 15 <meta charset="utf-8" /> 16 <title>{title}</title> 17 <meta name="description" content="Astro description" /> 18 <meta name="viewport" content="width=device-width" /> 19 <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> 20 <meta name="generator" content={Astro.generator} /> 21 </head> 22 <body 23 class="bg-brand font-body overflow-x-hidden text-lg text-black dark:text-white" 24 > 25 <slot /> 26 </body> 27</html>