Remove thumbnail
This commit is contained in:
parent
a85a91a701
commit
283ca57a5b
3 changed files with 4 additions and 15 deletions
|
@ -3,7 +3,6 @@ import Description from "./Description";
|
||||||
import ProfilePicture from "./ProfilePicture";
|
import ProfilePicture from "./ProfilePicture";
|
||||||
import { BlankLine } from "./utils";
|
import { BlankLine } from "./utils";
|
||||||
|
|
||||||
// TODO: Automate screenshot of info for thumbnail?
|
|
||||||
const Fetch = () => {
|
const Fetch = () => {
|
||||||
return (
|
return (
|
||||||
<div id="fetch">
|
<div id="fetch">
|
||||||
|
|
18
src/Head.tsx
18
src/Head.tsx
|
@ -1,6 +1,4 @@
|
||||||
import thumb from "./assets/thumb.png?format=webp&as=metadata";
|
const Description = "Hi! I'm Michael. Here's some links to my socials.";
|
||||||
|
|
||||||
const DESCRIPTION = "Michael Bradley is a computer scientist looking for a full-time job";
|
|
||||||
|
|
||||||
const Preamble = () => (
|
const Preamble = () => (
|
||||||
<>
|
<>
|
||||||
|
@ -20,11 +18,11 @@ const Styles = () => (
|
||||||
);
|
);
|
||||||
const SEO = () => (
|
const SEO = () => (
|
||||||
<>
|
<>
|
||||||
<meta name="keywords" content="Michael Bradley,personal website,programmer,coder,software developer" />
|
<meta name="keywords" content="Michael Bradley,personal website,home page" />
|
||||||
<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" />
|
||||||
<meta name="robots" content="index,follow" />
|
<meta name="robots" content="index,follow" />
|
||||||
<meta name="summary" content={DESCRIPTION} />
|
<meta name="summary" content={Description} />
|
||||||
<meta name="url" content={import.meta.env.BASE_URL} />
|
<meta name="url" content={import.meta.env.BASE_URL} />
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
@ -40,19 +38,11 @@ const OpenGraph = () => (
|
||||||
<meta property="og:url" content={import.meta.env.BASE_URL} />
|
<meta property="og:url" content={import.meta.env.BASE_URL} />
|
||||||
<meta property="og:site" content="Michael Bradley" />
|
<meta property="og:site" content="Michael Bradley" />
|
||||||
<meta property="og:title" content="Michael's personal website" />
|
<meta property="og:title" content="Michael's personal website" />
|
||||||
<meta property="og:description" content="A summary of my education, skills, and some projects I've worked on." />
|
<meta property="og:description" content={Description} />
|
||||||
<meta property="og:image" content={thumb.src} />
|
|
||||||
<meta property="og:image:secure_url" content={thumb.src} />
|
|
||||||
<meta property="og:image:alt" content={DESCRIPTION} />
|
|
||||||
<meta property="og:image:type" content={`image/${thumb.format}`} />
|
|
||||||
<meta property="og:image:width" content={`${thumb.width}`} />
|
|
||||||
<meta property="og:image:height" content={`${thumb.height}`} />
|
|
||||||
|
|
||||||
<meta name="twitter:url" content={import.meta.env.BASE_URL} />
|
<meta name="twitter:url" content={import.meta.env.BASE_URL} />
|
||||||
<meta name="twitter:title" content="Michael Bradley" />
|
<meta name="twitter:title" content="Michael Bradley" />
|
||||||
<meta name="twitter:description" content="My personal website." />
|
<meta name="twitter:description" content="My personal website." />
|
||||||
<meta name="twitter:image" content={thumb.src} />
|
|
||||||
<meta name="twitter:card" content="summary_large_image" />
|
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 134 KiB |
Loading…
Add table
Add a link
Reference in a new issue