Skip to content

Commit

Permalink
Favicon and branding
Browse files Browse the repository at this point in the history
  • Loading branch information
t3dotgg committed Nov 25, 2021
1 parent befd559 commit 82e0e4d
Show file tree
Hide file tree
Showing 13 changed files with 73 additions and 14 deletions.
Binary file added public/android-chrome-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/android-chrome-384x384.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/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.
9 changes: 9 additions & 0 deletions public/browserconfig.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<TileColor>#da532c</TileColor>
</tile>
</msapplication>
</browserconfig>
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-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 modified public/favicon.ico
Binary file not shown.
Binary file added public/mstile-150x150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions public/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "",
"short_name": "",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-384x384.png",
"sizes": "384x384",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}
Binary file added public/spheal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 0 additions & 4 deletions public/vercel.svg

This file was deleted.

45 changes: 45 additions & 0 deletions src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,55 @@ import "tailwindcss/tailwind.css";
import "../styles/global.css";
import type { AppProps } from "next/app";
import PlausibleProvider from "next-plausible";
import Head from "next/head";

function MyApp({ Component, pageProps }: AppProps) {
const description =
"We're here to answer the eternal question: What Pokémon is roundest?";
const title = "Roundest Pokémon";
const imageMetaURL = "https://roundest.t3.gg/spheal.png";

return (
<PlausibleProvider domain="roundest.t3.gg">
<Head>
<title>{title}</title>
<meta name="description" content={description} />
<link rel="icon" href={"https://roundest.t3.gg/favicon.ico"} />
<meta property="og:title" content={title} />
<meta property="og:description" content={description} />
<meta property="og:image" content={imageMetaURL} />
<meta name="twitter:image" content={imageMetaURL} />
<meta name="twitter:card" content="summary_large_image" />
<meta name="theme-color" content="#000000" />

<link
rel="apple-touch-icon"
sizes="180x180"
href="/apple-touch-icon.png?v=2"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon-32x32.png?v=2"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicon-16x16.png?v=2"
/>
<link rel="manifest" href="/site.webmanifest?v=2" />
<link rel="shortcut icon" href="/favicon.ico?v=2" />
<meta
name="apple-mobile-web-app-title"
content="Round - Video Calls Powered By T3 Tools"
/>
<meta
name="application-name"
content="Round - Video Calls Powered By T3 Tools"
/>
</Head>
<Component {...pageProps} />
</PlausibleProvider>
);
Expand Down
10 changes: 0 additions & 10 deletions src/pages/api/hello.ts

This file was deleted.

0 comments on commit 82e0e4d

Please sign in to comment.