3 Commits

2 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import HeroCentered from '@/components/sections/hero/HeroCentered'; import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import FeatureBento from '@/components/sections/feature/FeatureBento'; import FeatureBento from '@/components/sections/feature/FeatureBento';
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow'; import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
@@ -38,7 +38,7 @@ export default function LandingPage() {
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroCentered <HeroBillboard
title="The SaaS Platform Built for Modern Teams" title="The SaaS Platform Built for Modern Teams"
description="Streamline your workflow with powerful automation, real-time collaboration, and advanced analytics. Scale your business without complexity." description="Streamline your workflow with powerful automation, real-time collaboration, and advanced analytics. Scale your business without complexity."
background={{ variant: "sparkles-gradient" }} background={{ variant: "sparkles-gradient" }}

View File

@@ -130,7 +130,7 @@ const HeroBillboard = ({
<div className="flex flex-col gap-6" > <div className="flex flex-col gap-6" >
<div className={cls("w-full overflow-hidden rounded-theme-capped card p-4", mediaWrapperClassName)}> <div className={cls("w-full overflow-hidden rounded-theme-capped card p-4", mediaWrapperClassName)}>
<MediaContent <MediaContent
imageSrc={imageSrc} imageSrc="/new/path/to/hero-billboard-image.jpg" // Update the image path here
videoSrc={videoSrc} videoSrc={videoSrc}
imageAlt={imageAlt} imageAlt={imageAlt}
videoAriaLabel={videoAriaLabel} videoAriaLabel={videoAriaLabel}