Ryujinx-Website/index.html
Karim 70d6df62bd
Website redesign (#14)
* Initial project push

* Add tailwind config

* Add vue router config

* Continue

* Add generic navigation header

* Update navigations logic to prevent invalid active class

* Update HomePage.vue

* Add footer

* Add team member GitHub link

* Add new social list component

* Add SEO + favicon tag

* Update SEO tag

* Split header in multiple component

* Update i18n

* Add new homepage section

* Add new stats homepage section

* Add new section homepage section

* Add new section homepage section

* Add download page

* Update mac os section

* Add build information

* Continue

* Continue

* Continue

* Continue

* Add LDN build section

* Re order section

* Remove branch info

* Update contribute page

* Add generic button component

* Finish contribute page

* Update action logic

* Continue

* Continue

* Continue

* Fix invalid build

* Add missing token

* Fix deploy

* Update package

* Update package

* Add node version

* Fix typo

* Continue

* Fix typos

* Update teams

* Add new older build link

* Add new github action

* Add docker build

* Add LICENSE.txt and update README.md

* Add funding link

* Cleanup

* Fix invalid url

* Update .env

* Remove merge branch on release.yml

* Add asset condition

* Add sitemap.xml

* Add translation section
2022-09-07 09:32:39 +02:00

44 lines
1.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="/assets/images/favicon.png" rel="icon" />
<title>Ryujinx - Nintendo Switch Emulator</title>
<meta name="description" content="Ryujinx is an open-source Nintendo Switch emulator " />
<meta name="google-site-verification" content="6-jOQTZMaaKrCTbkRoghe5Pd1kbYhyGpOTAgUhoT9HA" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<!-- OG Meta Tags -->
<meta
property="og:title"
content="Ryujinx - Nintendo Switch Emulator"
/>
<meta property="og:site_name" content="Ryujinx" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://ryujinx.org/" />
<meta content="website" property="og:type" />
<meta
property="og:description"
content="Ryujinx is an open-source Nintendo Switch emulator created by gdkchan and written in C#."
/>
<meta property="og:locale" content="en_US" />
<!-- Twitter Meta Tags -->
<meta content="summary_large_image" name="twitter:card" />
<meta name=”twitter:creator” content=”@RyujinxEmu”>
<meta name=”twitter:site” content=”@RyujinxEmu”>
<meta name="twitter:title" content="Ryujinx - Nintendo Switch Emulator">
<meta
property="twitter:description"
content="Ryujinx is an open-source Nintendo Switch emulator created by gdkchan and written in C#."
/>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>