{title}
@@ -82,6 +82,8 @@ const description =Accounts ({accountObjects.length})
+Ordered in terms of my time of discovery.
+diff --git a/public/bskyfedi.png b/public/bskyfedi.png new file mode 100644 index 0000000..47278b7 Binary files /dev/null and b/public/bskyfedi.png differ diff --git a/src/components/Head.astro b/src/components/Head.astro index 53e0965..7922f7c 100644 --- a/src/components/Head.astro +++ b/src/components/Head.astro @@ -1,15 +1,21 @@ --- export interface Props { - title: string | undefined - description: string | undefined + title?: string + description?: string + ogImage?: string } const defaultDescription = 'Professional software engineer specializing in web development with a decade of experience building web applications for both private businesses and government-funded high-impact projects utilizing web technologies, IoT, data viz/insights, remote sensing, and GIS' const defaultTitle = 'Ayo Ayco | Engineering Leader, Software Engineer, Web Developer' +const defaultOgImage = 'ayo.png' -let { title, description = defaultDescription } = Astro.props +let { + title, + description = defaultDescription, + ogImage = defaultOgImage, +} = Astro.props const baseURL = 'https://ayo.ayco.io' --- @@ -30,7 +36,7 @@ const baseURL = 'https://ayo.ayco.io' - + diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 2509143..a35346c 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -8,14 +8,15 @@ import links from '../constants/links' export interface Props { title?: string description?: string + ogImage?: string } -const { title, description } = Astro.props +const { title, description, ogImage } = Astro.props --- -
diff --git a/src/pages/tech-bsky-fedi.astro b/src/pages/tech-bsky-fedi.astro index ae1e585..7347394 100644 --- a/src/pages/tech-bsky-fedi.astro +++ b/src/pages/tech-bsky-fedi.astro @@ -39,7 +39,7 @@ const description = 'Celebrating bsky folks who bridged their accounts to the fediverse!' --- -Ordered in terms of my time of discovery.
++