diff --git a/src/components/Meta.tsx b/src/components/Meta.tsx index 8a094dfc..0db72008 100644 --- a/src/components/Meta.tsx +++ b/src/components/Meta.tsx @@ -24,7 +24,7 @@ type Graph = Record; const MAX_DESC_LENGTH = 300; const SITE_NAME = 'Dylan Gattey'; export const HOMEPAGE_TITLE = 'Engineer. Problem Solver.'; -const OG_IMAGE_URL = '/api/og'; +const OG_IMAGE_URL = 'https://dylangattey.com/api/og'; const GRAPH_PREFIXES = ['og', 'twitter'] as const; /** diff --git a/src/og/OpenGraphImage.tsx b/src/og/OpenGraphImage.tsx index 6d0e88ca..34beb8d3 100644 --- a/src/og/OpenGraphImage.tsx +++ b/src/og/OpenGraphImage.tsx @@ -38,6 +38,7 @@ export function OpenGraphImage({ text, subtitle }: { text: string; subtitle: str display: 'flex', flexDirection: 'column', padding: 64, + paddingTop: 96, height: '100%', width: '100%', background: COLORS.DARK.DEFAULT_BACKGROUND,