drawDB/index.html

45 lines
1.9 KiB
HTML
Raw Normal View History

2023-09-19 20:46:33 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
2024-01-29 16:01:54 +08:00
<link rel="icon" href="src/assets/favicon.ico" />
2023-09-19 20:46:33 +08:00
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
2024-02-27 18:39:29 +08:00
content="Online database entity-realtionship diagram editor and SQL generator. Design, visualize, and export scripts without an account and completely free of charge."
2023-09-19 20:46:33 +08:00
/>
2024-02-28 21:35:21 +08:00
<meta property="og:type" content="website" />
<meta property="og:url" content="https://drawdb.vercel.app/" />
<meta property="og:title" content="drawDB | Online database diagram editor and SQL generator" />
<meta property="og:description" content="Online database entity-realtionship diagram editor and SQL generator. Design, visualize, and export scripts without an account and completely free of charge." />
<meta property="og:image" content="/hero_ss.png" />
2024-01-29 16:01:54 +08:00
<link rel="apple-touch-icon" href="src/assets/favicon.ico" />
2024-02-27 18:39:29 +08:00
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css"
crossorigin="anonymous"
/>
<title>drawDB | Online database diagram editor and SQL generator</title>
2023-09-19 20:46:33 +08:00
</head>
2023-09-19 20:51:08 +08:00
<body theme-mode="light">
2023-09-19 20:46:33 +08:00
<noscript>You need to enable JavaScript to run this app.</noscript>
2023-09-19 20:48:38 +08:00
<div id="root" class="h-full"></div>
2023-09-19 20:46:33 +08:00
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
2023-12-16 11:39:13 +08:00
<script type="module" src="/src/main.jsx"></script>
2024-02-27 18:39:29 +08:00
<script
src="https://kit.fontawesome.com/e35edcd75e.js"
crossorigin="anonymous"
></script>
2023-09-19 20:46:33 +08:00
</body>
</html>