Remove thumbnail

This commit is contained in:
Michael Bradley 2025-02-21 02:58:46 -05:00
parent a85a91a701
commit 283ca57a5b
Signed by: MichaelBradley
SSH key fingerprint: SHA256:cj/YZ5VT+QOKncqSkx+ibKTIn0Obg7OIzwzl9BL8EO8
3 changed files with 4 additions and 15 deletions

View file

@ -3,7 +3,6 @@ import Description from "./Description";
import ProfilePicture from "./ProfilePicture";
import { BlankLine } from "./utils";
// TODO: Automate screenshot of info for thumbnail?
const Fetch = () => {
return (
<div id="fetch">

View file

@ -1,6 +1,4 @@
import thumb from "./assets/thumb.png?format=webp&as=metadata";
const DESCRIPTION = "Michael Bradley is a computer scientist looking for a full-time job";
const Description = "Hi! I'm Michael. Here's some links to my socials.";
const Preamble = () => (
<>
@ -20,11 +18,11 @@ const Styles = () => (
);
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="subject" content="Self-advertisement" />
<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} />
</>
);
@ -40,19 +38,11 @@ const OpenGraph = () => (
<meta property="og:url" content={import.meta.env.BASE_URL} />
<meta property="og:site" content="Michael Bradley" />
<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: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 property="og:description" content={Description} />
<meta name="twitter:url" content={import.meta.env.BASE_URL} />
<meta name="twitter:title" content="Michael Bradley" />
<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