Merge version_4 into main #4

Merged
bender merged 1 commits from version_4 into main 2026-04-02 20:00:41 +00:00

View File

@@ -1,7 +1,7 @@
"use client";
import ReactLenis from "lenis/react";
import HeroCentered from "@/components/sections/hero/HeroCentered";
import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
@@ -14,13 +14,20 @@ export default function SaasTemplatePage() {
brandName="Glancerr Studio"
className="fixed top-0 left-0 right-0 z-50 bg-transparent"
/>
<div id="hero">
<HeroCentered
<div id="hero" data-section="hero">
<HeroBillboardRotatedCarousel
background={{ variant: "rotated-rays-animated-grid" }}
title="Building amazing software"
description=""
description="Experience the next generation of digital solutions with our innovative platform."
buttons={[]}
carouselItems={[]}
carouselItems={[
{ id: "1", imageSrc: "/images/placeholder.svg", imageAlt: "Product 1" },
{ id: "2", imageSrc: "/images/placeholder.svg", imageAlt: "Product 2" },
{ id: "3", imageSrc: "/images/placeholder.svg", imageAlt: "Product 3" },
{ id: "4", imageSrc: "/images/placeholder.svg", imageAlt: "Product 4" },
{ id: "5", imageSrc: "/images/placeholder.svg", imageAlt: "Product 5" },
{ id: "6", imageSrc: "/images/placeholder.svg", imageAlt: "Product 6" }
]}
autoPlay={false}
/>
</div>