24 lines
712 B
HTML
24 lines
712 B
HTML
<!doctype html>
|
|
<html lang="en" data-theme="dark">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="view-transition" content="same-origin" />
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap"
|
|
rel="stylesheet" />
|
|
|
|
<title>Codex Marketplace</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root" class="root"></div>
|
|
|
|
<!-- <h1>Vite is running in %MODE%</h1> -->
|
|
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|