mirror of
https://github.com/tangledup-ai/stepfun-vector-stores-admin.git
synced 2026-01-20 19:00:59 +08:00
81 lines
2.3 KiB
HTML
81 lines
2.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link
|
|
rel="icon"
|
|
type="image/svg+xml"
|
|
href="/images/favicon.svg"
|
|
media="(prefers-color-scheme: light)"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/svg+xml"
|
|
href="/images/favicon_light.svg"
|
|
media="(prefers-color-scheme: dark)"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
href="/images/favicon.png"
|
|
media="(prefers-color-scheme: light)"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
href="/images/favicon_light.png"
|
|
media="(prefers-color-scheme: dark)"
|
|
/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<!-- Primary Meta Tags -->
|
|
<title>阶跃星辰知识库管理系统</title>
|
|
<meta name="title" content="阶跃星辰知识库管理系统" />
|
|
<meta
|
|
name="description"
|
|
content="Admin Dashboard UI built with Shadcn and Vite."
|
|
/>
|
|
|
|
<!-- Open Graph / Facebook -->
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content="https://shadcn-admin.netlify.app" />
|
|
<meta property="og:title" content="Shadcn Admin" />
|
|
<meta
|
|
property="og:description"
|
|
content="Admin Dashboard UI built with Shadcn and Vite."
|
|
/>
|
|
<meta
|
|
property="og:image"
|
|
content="https://shadcn-admin.netlify.app/images/shadcn-admin.png"
|
|
/>
|
|
|
|
<!-- Twitter -->
|
|
<meta property="twitter:card" content="summary_large_image" />
|
|
<meta property="twitter:url" content="https://shadcn-admin.netlify.app" />
|
|
<meta property="twitter:title" content="Shadcn Admin" />
|
|
<meta
|
|
property="twitter:description"
|
|
content="Admin Dashboard UI built with Shadcn and Vite."
|
|
/>
|
|
<meta
|
|
property="twitter:image"
|
|
content="https://shadcn-admin.netlify.app/images/shadcn-admin.png"
|
|
/>
|
|
|
|
<!-- font family -->
|
|
<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=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
|
|
<meta name="theme-color" content="#fff" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|