this repo has no description yoyle.city
nekoweb html css javascript astro
at main 21 lines 600 B view raw
1--- 2import HeadTags from "../components/HeadTags.astro"; 3const { title = "yoyle.city", description = "my cozy lil website" } = Astro.props; 4--- 5 6<!DOCTYPE html> 7<html lang="en"> 8 <head> 9 <title>{title}</title> 10 <meta name="description" content={description} /> 11 <meta property="og:title" content={title} /> 12 <meta property="og:description" content={description} /> 13 <link rel="stylesheet" href="../menustyles.css" /> 14 <HeadTags /> 15 <meta name="generator" content={Astro.generator} /> 16 </head> 17 <body> 18 <p style="font-weight: bold; font-size: 30px;">yoyle.city</p> 19 <slot /> 20 </body> 21</html>