odin-codespace/shopping-cart/index.html
Smig 50b50915de
Shopping cart (#19)
* feat: navbar and main components added

* feat: add shopping cart

* added cart and store components

* basic functionality complete

* fix: effect

* adding more logic and components

* basic features

* reorg tree and add summary

* feat: new stuff

* styling: more stuff

* changes

* as good as itll get

* added public

---------

Co-authored-by: mike <mike@windows>
2024-11-22 20:47:46 -05:00

19 lines
655 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hobby Tech</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>