Skip to content

Commit

Permalink
sike (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
lawandothman authored Jan 12, 2023
1 parent ba5122e commit 00b2d19
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 15 deletions.
10 changes: 0 additions & 10 deletions pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,6 @@ export default function app({ Component, pageProps }: AppProps) {
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&family=Open+Sans:wght@400;700&display=swap" rel="stylesheet" />
<meta name="Description" content="Hi I am Pedro and this is my personal page, a home for all my work"/>
<meta
name="theme-color"
media="(prefers-color-scheme: light)"
content="#FFFFFF"
/>
<meta
name="theme-color"
media="(prefers-color-scheme: dark)"
content="#000000"
/>
<meta charSet="utf-8" />
<meta httpEquiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
Expand Down
15 changes: 13 additions & 2 deletions pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,21 @@ export default class extends Document {
render() {
return (
<Html lang="en">
<Head />
<Head>
<meta
name="theme-color"
media="(prefers-color-scheme: light)"
content="#FFFFFF"
/>
<meta
name="theme-color"
media="(prefers-color-scheme: dark)"
content="#000000"
/>
</Head>
<Main />
<NextScript />
</Html>
)
);
}
}
6 changes: 3 additions & 3 deletions public/site.webmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"purpose": "any maskable"
}
],
"theme_color": "#000",
"background_color": "#000",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#000000",
"play": "standalone",
"start_url": "/"
}

1 comment on commit 00b2d19

@vercel
Copy link

@vercel vercel bot commented on 00b2d19 Jan 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

pedsm-dev – ./

pedsm-dev-pedsm.vercel.app
pedsm-dev-git-master-pedsm.vercel.app
pedsm.dev
pedsm-dev.vercel.app

Please sign in to comment.