add favicon and opengraph
BIN
src/static/favicon/android-chrome-192x192.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
src/static/favicon/android-chrome-512x512.png
Normal file
After Width: | Height: | Size: 40 KiB |
BIN
src/static/favicon/apple-touch-icon.png
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
src/static/favicon/favicon-16x16.png
Normal file
After Width: | Height: | Size: 550 B |
BIN
src/static/favicon/favicon-32x32.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
src/static/favicon/favicon.ico
Normal file
After Width: | Height: | Size: 15 KiB |
19
src/static/favicon/site.webmanifest
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"name": "",
|
||||
"short_name": "",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/static/favicon/android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/static/favicon/android-chrome-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"theme_color": "#ffffff",
|
||||
"background_color": "#000000",
|
||||
"display": "standalone"
|
||||
}
|
BIN
src/static/og/opengraph.png
Normal file
After Width: | Height: | Size: 53 KiB |
|
@ -29,6 +29,26 @@ export default function Base({ children, isDev }: BaseProps) {
|
|||
href="https://fonts.googleapis.com/css2?family=Sometype+Mono&family=Ubuntu&family=Ubuntu+Mono&display=swap"
|
||||
rel="stylesheet"
|
||||
></link>
|
||||
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="./favicon/apple-touch-icon.png" />
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="./favicon/favicon-32x32.png" />
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="./favicon/favicon-16x16.png" />
|
||||
<link rel="manifest" href="./favicon/site.webmanifest" />
|
||||
|
||||
<meta name="description" content="A tech non-company with a whole lot of wah—100% tech, 200% wah!" />
|
||||
<meta name="keywords" content="wah.su, radiquum, invite-only, hosting" />
|
||||
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="https://home.wah.su/" />
|
||||
<meta name="twitter:title" content="WAH.su" />
|
||||
<meta name="twitter:description" content="A tech non-company with a whole lot of wah—100% tech, 200% wah!" />
|
||||
<meta name="twitter:image" content="https://home.wah.su/static/og/opengraph.png" />
|
||||
|
||||
<meta property="og:title" content="WAH.su" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://home.wah.su/" />
|
||||
<meta property="og:image" content="https://home.wah.su/static/og/opengraph.png" />
|
||||
<meta property="og:description" content="A tech non-company with a whole lot of wah—100% tech, 200% wah!" />
|
||||
</head>
|
||||
<body className="bg-[#1A0F05] container mx-auto max-w-[1210px] text-white py-8 overflow-x-hidden">
|
||||
{children}
|
||||
|
|
|
@ -6,8 +6,7 @@ export default function Title() {
|
|||
WAH.su<span className="text-[32px] md:text-[48px]">(d0)</span>
|
||||
</h1>
|
||||
<p className="text-white ubuntu-mono-regular text-[24px] md:text-[32px] tracking-tighter md:tracking-normal leading-none">
|
||||
A tech non-company with a whole lot of wah—100% tech, 100%
|
||||
non-company, 200% wah!
|
||||
A tech non-company with a whole lot of wah—100% tech, 200% wah!
|
||||
</p>
|
||||
</div>
|
||||
<a
|
||||
|
|