mirror of
https://github.com/umami-software/umami.git
synced 2026-02-08 06:37:18 +01:00
Allow embedding of share page.
This commit is contained in:
parent
9cb6046844
commit
eda2c07ea3
10 changed files with 58 additions and 39 deletions
|
|
@ -8,16 +8,16 @@ import 'styles/locale.css';
|
|||
import 'styles/index.css';
|
||||
import 'styles/variables.css';
|
||||
|
||||
export default function RootLayout({ children }) {
|
||||
export default function ({ children }) {
|
||||
return (
|
||||
<html lang="en" data-scroll="0">
|
||||
<head>
|
||||
<link rel="icon" href={`/favicon.ico`} />
|
||||
<link rel="apple-touch-icon" sizes="180x180" href={`/apple-touch-icon.png`} />
|
||||
<link rel="icon" type="image/png" sizes="32x32" href={`/favicon-32x32.png`} />
|
||||
<link rel="icon" type="image/png" sizes="16x16" href={`/favicon-16x16.png`} />
|
||||
<link rel="manifest" href={`/site.webmanifest`} />
|
||||
<link rel="mask-icon" href={`/safari-pinned-tab.svg`} color="#5bbad5" />
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
|
||||
<link rel="manifest" href="/site.webmanifest" />
|
||||
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
|
||||
<meta name="msapplication-TileColor" content="#da532c" />
|
||||
<meta name="theme-color" content="#fafafa" media="(prefers-color-scheme: light)" />
|
||||
<meta name="theme-color" content="#2f2f2f" media="(prefers-color-scheme: dark)" />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue