4 Commits

Author SHA1 Message Date
5784f79216 Bob AI: Change the hero section layout with a different on... 2026-02-09 04:55:58 +00:00
307b2bc6fb Merge version_3 into main
Merge version_3 into main
2026-02-09 04:53:11 +00:00
e125546db0 Bob AI: Change the hero section layout with a different on... 2026-02-09 04:52:37 +00:00
7ecec4e0ec Merge version_2 into main
Merge version_2 into main
2026-02-09 03:03:39 +00:00

View File

@@ -1,7 +1,7 @@
"use client" "use client"
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit'; import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import ProductCardThree from '@/components/sections/product/ProductCardThree'; import ProductCardThree from '@/components/sections/product/ProductCardThree';
import PricingCardThree from '@/components/sections/pricing/PricingCardThree'; import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
@@ -11,6 +11,7 @@ import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterMedia from '@/components/sections/footer/FooterMedia'; import FooterMedia from '@/components/sections/footer/FooterMedia';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Bell, CheckCircle, Sparkles } from "lucide-react"; import { Bell, CheckCircle, Sparkles } from "lucide-react";
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -42,18 +43,21 @@ export default function LandingPage() {
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroLogoBillboardSplit <HeroBillboardCarousel
logoText="LIKA-COMFORT" title="Experience Ultimate Comfort"
description="Premium air conditioning solutions for residential and commercial spaces across Ukraine. Experience superior climate control with cutting-edge technology and expert installation." description="Discover premium air conditioning solutions tailored for your home and business needs. Enjoy superior climate control with advanced technology and professional installation."
background={{variant: "radial-gradient"}} background={{ variant: "rotated-rays-animated" }}
buttons={[ buttons={[
{"text":"Explore Products","href":"#products"}, { text: "Explore Products", href: "#products" },
{"text":"Request Quote","href":"#contact"} { text: "Request Quote", href: "#contact" },
]} { text: "Learn More", href: "#about" }
layoutOrder="default" ]}
imageSrc="https://img.b2bpic.net/free-photo/woman-turning-air-conditioner-using-tablet_259150-57148.jpg" mediaItems={[
imageAlt="Premium air conditioning unit" { imageSrc: "https://images.unsplash.com/photo-1519681393784-d120267933ba?w=800&q=80", imageAlt: "Modern air conditioning unit" },
frameStyle="card" { imageSrc: "https://images.unsplash.com/photo-1519681393784-d120267933ba?w=800&q=80", imageAlt: "Energy efficient home" },
{ imageSrc: "https://images.unsplash.com/photo-1519681393784-d120267933ba?w=800&q=80", imageAlt: "Expert installation team" }
]}
ariaLabel="Hero Billboard Carousel for Lika-Comfort"
/> />
</div> </div>