Merge version_4 into main

Merge version_4 into main
This commit was merged in pull request #3.
This commit is contained in:
2026-01-02 02:26:11 +00:00
2 changed files with 13 additions and 11 deletions

View File

@@ -1272,4 +1272,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
import TagAbout from '@/components/sections/about/TagAbout'; import TagAbout from '@/components/sections/about/TagAbout';
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
import ProductCardSeven from '@/components/sections/product/ProductCardSeven'; import ProductCardSeven from '@/components/sections/product/ProductCardSeven';
@@ -40,7 +40,7 @@ export default function LandingPage() {
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboardCarousel <HeroBillboardRotatedCarousel
title="Creative Work That Moves" title="Creative Work That Moves"
description="We craft digital experiences that resonate. Design, strategy, and innovation in every project." description="We craft digital experiences that resonate. Design, strategy, and innovation in every project."
tag="Creative Studio" tag="Creative Studio"
@@ -48,14 +48,16 @@ export default function LandingPage() {
{ text: "Explore Our Work", href: "work" }, { text: "Explore Our Work", href: "work" },
{ text: "Get Started", href: "contact" } { text: "Get Started", href: "contact" }
]} ]}
mediaItems={[ carouselItems={[
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767308569893-by35j6nh.jpg", imageAlt: "Creative portfolio showcase 1" }, { id: "1", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767308569893-by35j6nh.jpg", imageAlt: "Creative portfolio showcase 1" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767308570837-ykqg9x84.jpg", imageAlt: "Creative portfolio showcase 2" }, { id: "2", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767308570837-ykqg9x84.jpg", imageAlt: "Creative portfolio showcase 2" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766401281537-bd695c8y.jpg", imageAlt: "Creative portfolio showcase 3" }, { id: "3", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766401281537-bd695c8y.jpg", imageAlt: "Creative portfolio showcase 3" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767308833580-g33a307n.jpg", imageAlt: "Creative portfolio showcase 4" }, { id: "4", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767308833580-g33a307n.jpg", imageAlt: "Creative portfolio showcase 4" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_35a7P1i3U8nbKvxlC9pMeozlemI/uploaded-1767308804435-mtgy7jd0.jpg", imageAlt: "Creative portfolio showcase 5" }, { id: "5", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_35a7P1i3U8nbKvxlC9pMeozlemI/uploaded-1767308804435-mtgy7jd0.jpg", imageAlt: "Creative portfolio showcase 5" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767308572713-7scj2kqp.jpg", imageAlt: "Creative portfolio showcase 6" } { id: "6", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767308572713-7scj2kqp.jpg", imageAlt: "Creative portfolio showcase 6" }
]} ]}
autoPlay={true}
autoPlayInterval={4000}
/> />
</div> </div>
@@ -202,4 +204,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }