diff --git a/content/blog/porsche-digital-campus.mdx b/content/blog/porsche-digital-campus.mdx index 80ec7b4..5458ecd 100644 --- a/content/blog/porsche-digital-campus.mdx +++ b/content/blog/porsche-digital-campus.mdx @@ -8,7 +8,7 @@ author: description: The Porsche Digital Campus is an innovative initiative with the goal of bringing together research and real-world application in the fields of AI, machine learning, and data science. image: https://uploads-ssl.webflow.com/6419a4c2c9609e21b02a47e8/6454e539d4ea54c08e42aedb_Frame%2010683.png slug: https://campus.porsche.digital/ -readTime: 5min +readTime: 3min --- = ({ params }: PageProps) => { description={description} subtitle="FOSS@Porsche" imageSrc={blog.image} - imageAlt="" + imageAlt="Hero Image" + position="center center" />
diff --git a/src/components/03_organisms/heroSection/HeroSection.tsx b/src/components/03_organisms/heroSection/HeroSection.tsx index 3e21b0a..326d22f 100644 --- a/src/components/03_organisms/heroSection/HeroSection.tsx +++ b/src/components/03_organisms/heroSection/HeroSection.tsx @@ -13,6 +13,7 @@ interface HeroSectionProps { description?: string; imageSrc: string | StaticImageData; imageAlt: string; + position?: string; } export const HeroSection: React.FC = ({ @@ -21,12 +22,14 @@ export const HeroSection: React.FC = ({ description, imageSrc, imageAlt, + position = "right center", }) => { return (