mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 20:38:52 +00:00
[AF-1325](https://linear.app/affine-design/issue/AF-1325/优化-pwa-体验), [AF-1317](https://linear.app/affine-design/issue/AF-1317/优化:-pwa-的顶部-status-bar-颜色应与背景保持一致), [AF-1318](https://linear.app/affine-design/issue/AF-1318/优化:pwa-的底部应当有符合设备安全高度的padding), [AF-1321](https://linear.app/affine-design/issue/AF-1321/更新一下-fail-的-pwa-icon) - New `<SafeArea />` ui component - New `useThemeColorV1` / `useThemeColorV2` hook: - to modify `<meta name="theme-color" />` with given theme key
49 lines
1.8 KiB
HTML
49 lines
1.8 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1, maximum-scale=1, viewport-fit=<%= VIEWPORT_FIT %>"
|
|
/>
|
|
|
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta
|
|
name="apple-mobile-web-app-status-bar-style"
|
|
content="black-translucent"
|
|
/>
|
|
|
|
<title>AFFiNE</title>
|
|
<meta name="theme-color" content="#fafafa" />
|
|
<link rel="preconnect" href="<%= PUBLIC_PATH %>" />
|
|
<link rel="manifest" href="/manifest.json" />
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
|
<link rel="icon" sizes="192x192" href="/favicon-192.png" />
|
|
<meta name="emotion-insertion-point" content="" />
|
|
<meta property="description" content="<%= DESCRIPTION %>" />
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:url" content="https://app.affine.pro/" />
|
|
<meta
|
|
name="twitter:title"
|
|
content="AFFiNE: There can be more than Notion and Miro."
|
|
/>
|
|
<meta name="twitter:description" content="<%= DESCRIPTION %>" />
|
|
<meta name="twitter:site" content="@AffineOfficial" />
|
|
<meta name="twitter:image" content="https://affine.pro/og.jpeg" />
|
|
<meta
|
|
property="og:title"
|
|
content="AFFiNE: There can be more than Notion and Miro."
|
|
/>
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:description" content="<%= DESCRIPTION %>" />
|
|
<meta property="og:url" content="https://app.affine.pro/" />
|
|
<meta property="og:image" content="https://affine.pro/og.jpeg" />
|
|
<link data-react-helmet="true" rel="shortcut icon" href="/favicon.ico" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app" data-version="<%= GIT_SHORT_SHA %>"></div>
|
|
</body>
|
|
</html>
|