Compare commits

..

No commits in common. "df7a34f3552a83aef1ecb3d3cce53ba636cbab61" and "7b4935ad5d856f33d79f7076319f75680fd85bce" have entirely different histories.

9 changed files with 5 additions and 13 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 732 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

View file

@ -1,2 +0,0 @@
{"name":"Michael Bradley's Website","short_name":"Michael Bradley","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#0dcdcd","background_color":"#000000"}

View file

@ -34,7 +34,7 @@ const Fetch = () => {
<span className="text-highlight">University</span>: Carleton <span className="text-highlight">University</span>: Carleton
</p> </p>
<p> <p>
<span className="text-highlight">Major CGPA</span>: 11.52/12 (A+) <span className="text-highlight">Major CGPA</span>: 11.50/12 (A+)
</p> </p>
<p> <p>
<span className="text-highlight">Languages</span>: C/C++, Python, TypeScript <span className="text-highlight">Languages</span>: C/C++, Python, TypeScript

View file

@ -18,8 +18,12 @@ const Styles = () => (
<meta name="theme-color" content="#eaeaea" media="(prefers-color-scheme: light)" /> <meta name="theme-color" content="#eaeaea" media="(prefers-color-scheme: light)" />
</> </>
); );
// TODO: Find better icon than GH avatar
// <link rel="icon" href="https://avatars.githubusercontent.com/u/68788583?s=48&v=4" />
const SEO = () => ( const SEO = () => (
<> <>
<link rel="icon" href="data:," />
<meta name="keywords" content="Michael Bradley,personal website,programmer,coder,software developer" /> <meta name="keywords" content="Michael Bradley,personal website,programmer,coder,software developer" />
<meta name="description" content="Michael Bradley's personal website" /> <meta name="description" content="Michael Bradley's personal website" />
<meta name="subject" content="Self-advertisement" /> <meta name="subject" content="Self-advertisement" />
@ -56,22 +60,12 @@ const OpenGraph = () => (
</> </>
); );
const Favicon = () => (
<>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<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="manifest" href="/site.webmanifest" />
</>
);
const Head = () => ( const Head = () => (
<> <>
<Preamble /> <Preamble />
<Styles /> <Styles />
<SEO /> <SEO />
<OpenGraph /> <OpenGraph />
<Favicon />
</> </>
); );