mirror of
https://git.suyu.dev/suyu/website.git
synced 2025-12-21 21:26:05 +01:00
Merge branch 'MattTheTekie-dev-patch-94601' into 'dev'
Fix up metadata See merge request suyu-emu/website!18
This commit is contained in:
commit
0836537875
2 changed files with 17 additions and 14 deletions
10
src/app.html
10
src/app.html
|
|
@ -10,16 +10,6 @@
|
|||
href="https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<meta property="og:type" content="summary" />
|
||||
<meta property="og:site_name" content="suyu" />
|
||||
<meta property="og:title" content="suyu" />
|
||||
<meta
|
||||
property="og:description"
|
||||
content="suyu, pronounced sue-you (wink wink) is the continuation of the world's most popular, open-source, Nintendo Switch emulator, yuzu. It is written in C++ with portability in mind, and we actively maintain builds for Windows, Linux and Android."
|
||||
/>
|
||||
<meta property="og:image" content="https://suyu.dev/img/suyu.png" />
|
||||
<meta property="og:image:alt" content="suyu" />
|
||||
<meta property="og:url" content="https://suyu.dev" />
|
||||
%sveltekit.head%
|
||||
</head>
|
||||
<body data-sveltekit-preload-data="hover">
|
||||
|
|
|
|||
|
|
@ -25,12 +25,25 @@
|
|||
|
||||
<svelte:head>
|
||||
<title>{metadata.title}</title>
|
||||
<meta name="description" content={metadata.description} />
|
||||
|
||||
<meta property="og:url" content={metadata.url} />
|
||||
<meta property="og:title" content={metadata.title} />
|
||||
<meta property="og:type" content="summary" />
|
||||
|
||||
<meta property="og:site_name" content="suyu" />
|
||||
|
||||
|
||||
|
||||
|
||||
<meta
|
||||
property="og:description"
|
||||
content="suyu, pronounced sue-you (wink wink) is the continuation of the world's most popular, open-source, Nintendo Switch emulator, yuzu. It is written in C++ with portability in mind, and we actively maintain builds for Windows, Linux and Android."
|
||||
/>
|
||||
|
||||
<meta property="og:url" content="https://suyu.dev" />
|
||||
<meta property="og:title" content="suyu" />
|
||||
<meta property="og:description" content={metadata.description} />
|
||||
<meta property="og:image" content={metadata.image} />
|
||||
<meta property="og:image" content="https://suyu.dev/img/suyu.png" />
|
||||
|
||||
<meta property="og:image:alt" content="suyu" />
|
||||
|
||||
<meta name="twitter:url" content={metadata.url} />
|
||||
<meta name="twitter:title" content={metadata.title} />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue