diff --git a/infra/website/src/layouts/BaseLayout.astro b/infra/website/src/layouts/BaseLayout.astro
index d73c7b0ebde..05d940005ba 100644
--- a/infra/website/src/layouts/BaseLayout.astro
+++ b/infra/website/src/layouts/BaseLayout.astro
@@ -4,9 +4,17 @@ import '../styles/global.css';
interface Props {
title: string;
description?: string;
+ socialImage?: string;
+ ogUrl?: string;
}
-const { title, description = "Feast is an end-to-end open source feature store for machine learning. It allows teams to define, manage, discover, and serve features." } = Astro.props;
+const defaultSocialImage = "https://feast.dev/wp-content/uploads/2023/01/feast-og@2x.png";
+const {
+ title,
+ description = "Feast is an end-to-end open source feature store for machine learning. It allows teams to define, manage, discover, and serve features.",
+ socialImage = defaultSocialImage,
+ ogUrl = "https://feast.dev/",
+} = Astro.props;
---
@@ -25,16 +33,16 @@ const { title, description = "Feast is an end-to-end open source feature store f
-
+
-
+
-
+
@@ -51,4 +59,4 @@ const { title, description = "Feast is an end-to-end open source feature store f