mirror of
https://github.com/acedanger/finance.git
synced 2025-12-05 22:50:12 -08:00
20 lines
598 B
HTML
20 lines
598 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Finance App</title>
|
|
<link rel="stylesheet" href="/src/styles/radix-ui.css" />
|
|
<link
|
|
rel="stylesheet"
|
|
href="/node_modules/@fortawesome/fontawesome-free/css/all.min.css"
|
|
/>
|
|
<link rel="stylesheet" href="/src/styles/global.css" />
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|