2 Commits

2 changed files with 4 additions and 0 deletions

View File

@@ -106,6 +106,7 @@ const SplitAbout = ({
<section
aria-label={ariaLabel}
className={cls("relative py-20 w-full", useInvertedBackground === "invertDefault" && "bg-foreground", className)}
style={{ backgroundImage: `url('https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1920&q=80')`, backgroundSize: 'cover', backgroundPosition: 'center' }}
>
<div className={cls("w-content-width mx-auto flex flex-col gap-8", containerClassName)}>
<CardStackTextBox

View File

@@ -63,6 +63,7 @@ interface HeroBillboardProps {
marqueeImageClassName?: string;
marqueeTextClassName?: string;
marqueeIconClassName?: string;
backgroundImage?: string;
}
const HeroBillboard = ({
@@ -100,11 +101,13 @@ const HeroBillboard = ({
marqueeImageClassName = "",
marqueeTextClassName = "",
marqueeIconClassName = "",
backgroundImage = "https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1920&q=80",
}: HeroBillboardProps) => {
return (
<section
aria-label={ariaLabel}
className={cls("relative w-full py-hero-page-padding", className)}
style={{ backgroundImage: `url(${backgroundImage})` }}
>
<HeroBackgrounds {...background} />
<div className={cls("w-content-width mx-auto flex flex-col gap-14 md:gap-15 relative z-10", containerClassName)}>