Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon.ico
Binary file not shown.
Binary file added public/images/Company Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/company-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/images/m_banner.png
Binary file not shown.
Binary file added public/images/og-cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions public/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "Mustaverse Digital 邁思達數位",
"short_name": "Mustaverse",
"icons": [
{ "src": "/favicon-192x192.png", "sizes": "192x192", "type": "image/png" },
{ "src": "/favicon-512x512.png", "sizes": "512x512", "type": "image/png" }
],
"theme_color": "#15161a",
"background_color": "#15161a",
"display": "standalone"
}
40 changes: 38 additions & 2 deletions src/pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ export default function Document() {
<Html lang="en">
<Head>
<meta charSet="UTF-8" />
<link rel="icon" type="image/png" href="img/favicon.jpg" />
<link rel="icon" href="/favicon.ico" sizes="any" />
<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="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="manifest" href="/site.webmanifest" />
<meta name="theme-color" content="#15161a" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<link href="https://fonts.googleapis.com" rel="preconnect" />
<link crossOrigin="anonymous" href="https://fonts.gstatic.com" rel="preconnect" />
Expand All @@ -17,7 +22,38 @@ export default function Document() {
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap"
rel="stylesheet"
/>
<title>Aurayale</title>
<title>Mustaverse Digital 邁思達數位</title>
<meta
name="description"
content="Mustaverse Digital (邁思達數位科技) turns brands and characters into trading card games, with the on-chain ownership and XR layers around them."
/>
<link rel="canonical" href="https://www.mustaversegames.xyz/" />

{/* Open Graph */}
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Mustaverse Digital" />
<meta property="og:title" content="Mustaverse Digital 邁思達數位科技" />
<meta
property="og:description"
content="Mustaverse Digital (邁思達數位科技) turns brands and characters into trading card games, with the on-chain ownership and XR layers around them."
/>
<meta property="og:url" content="https://www.mustaversegames.xyz/" />
<meta property="og:locale" content="en_US" />
<meta property="og:locale:alternate" content="zh_TW" />
<meta property="og:image" content="https://www.mustaversegames.xyz/images/og-cover.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="Mustaverse Digital — IP on cards, on-chain." />

{/* Twitter / X */}
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@MustaverseLab" />
<meta name="twitter:title" content="Mustaverse Digital 邁思達數位科技" />
<meta
name="twitter:description"
content="Mustaverse Digital (邁思達數位科技) turns brands and characters into trading card games, with the on-chain ownership and XR layers around them."
/>
<meta name="twitter:image" content="https://www.mustaversegames.xyz/images/og-cover.png" />
<script
async
// data-adbreak-test="on"
Expand Down