22 lines
955 B
HTML
22 lines
955 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<!-- Add a plain CSS file: see https://trunkrs.dev/assets/#css -->
|
|
<!-- If using Tailwind with Leptos CSR, see https://trunkrs.dev/assets/#tailwind instead-->
|
|
<link data-trunk rel="scss" href="public/styles.scss" />
|
|
|
|
<!-- Include favicon in dist output: see https://trunkrs.dev/assets/#icon -->
|
|
<link data-trunk rel="icon" href="public/favicon.ico" />
|
|
|
|
<!-- include support for `wasm-bindgen --weak-refs` - see: https://rustwasm.github.io/docs/wasm-bindgen/reference/weak-references.html -->
|
|
<link data-trunk rel="rust" data-wasm-opt="z" data-weak-refs />
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com"/>
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin/>
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap"/>
|
|
</head>
|
|
|
|
<body></body>
|
|
|
|
</html>
|