2024-05-20 18:40:43 -03:00
|
|
|
package layouts
|
|
|
|
|
|
|
|
|
|
templ Page(title string) {
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
2024-05-23 16:30:37 -03:00
|
|
|
<link rel="stylesheet" href="/uno.css"/>
|
2024-05-23 18:27:47 -03:00
|
|
|
<style>
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: Inter;
|
|
|
|
|
src: url(inter.woff2);
|
|
|
|
|
}
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: Cal Sans;
|
|
|
|
|
src: url(cal-sans.woff2);
|
|
|
|
|
}
|
2024-05-23 18:47:30 -03:00
|
|
|
@font-face {
|
|
|
|
|
font-family: Fira Code;
|
|
|
|
|
src: url(fira-code.woff2);
|
|
|
|
|
}
|
2024-05-23 18:27:47 -03:00
|
|
|
</style>
|
2024-05-20 18:40:43 -03:00
|
|
|
<title>{ title }</title>
|
|
|
|
|
</head>
|
2024-05-23 18:29:45 -03:00
|
|
|
<body class="bg-black flex flex-col justify-center items-center w-screen h-screen overflow-hidden text-white font-sans">
|
2024-05-20 18:40:43 -03:00
|
|
|
{ children... }
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|
}
|