0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-03-25 17:08:11 +00:00

moving towards SPA

This commit is contained in:
Víctor Losada Hernández
2026-02-01 17:28:21 +01:00
parent 390ff68a6b
commit 820160d0f5
5 changed files with 138 additions and 90 deletions

29
client/index.html Normal file
View File

@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, height=device-height, interactive-widget=resizes-visual"
/>
<link
href="//fonts.googleapis.com/css?family=Open+Sans:400,300,600,700"
rel="stylesheet"
type="text/css"
/>
<link rel="icon" href="/assets/favicon.ico" type="image/x-icon" />
<!-- Optional: static OG defaults -->
<meta name="twitter:card" content="summary" />
<title>The Homebrewery - NaturalCrit</title>
</head>
<body>
<main id="reactRoot"></main>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>