5 Commits

Author SHA1 Message Date
ba67e646a1 Merge version_4_1782160640142 into main
Merge version_4_1782160640142 into main
2026-06-22 20:39:25 +00:00
kudinDmitriyUp
f7baa343bd Bob AI: Fix primary CTA contrast to match glassmorphism theme 2026-06-22 20:38:43 +00:00
f578392b90 Merge version_3_1782160416800 into main
Merge version_3_1782160416800 into main
2026-06-22 20:36:27 +00:00
kudinDmitriyUp
0dd5ab4c52 Bob AI: Added scroll-triggered 3D glassmorphic objects to hero 2026-06-22 20:35:48 +00:00
276f0548b2 Merge version_2_1782160241700 into main
Merge version_2_1782160241700 into main
2026-06-22 20:31:59 +00:00
2 changed files with 13 additions and 20 deletions

View File

@@ -8,8 +8,8 @@
--background: #0a0a0a;
--card: rgba(255, 255, 255, 0.05);
--foreground: #ffffffe6;
--primary-cta: #e6e6e6;
--primary-cta-text: #0a0a0a;
--primary-cta: rgba(255, 255, 255, 0.1);
--primary-cta-text: #ffffff;
--secondary-cta: rgba(255, 255, 255, 0.05);
--secondary-cta-text: #ffffffe6;
--accent: #737373;

View File

@@ -1,25 +1,18 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "hero" section.
// Created by add_section_from_catalog (HeroBrand).
import React from 'react';
import HeroSplit from '@/components/sections/hero/HeroSplit';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
import HeroBrand from '@/components/sections/hero/HeroBrand';
export default function HeroSection(): React.JSX.Element {
return (
<div id="hero" data-section="hero">
<SectionErrorBoundary name="hero">
<HeroSplit
tag="Innovation Hub"
title="Where Ideas Rise Into Reality"
description="RiseLab accelerates innovation through advanced technology infrastructure and expert collaboration. Transform your concept into market-ready solutions."
primaryButton={{
text: "Start Your Project", href: "#contact"}}
secondaryButton={{
text: "Learn More", href: "#about"}}
imageSrc="http://img.b2bpic.net/free-photo/person-uses-tablet-governmental-cyber-security-room-working-russian-flag_482257-90680.jpg"
/>
</SectionErrorBoundary>
</div>
<div data-webild-section="hero" id="hero">
<HeroBrand
primaryButton={{"href":"#contact","text":"Start Your Project"}}
imageSrc="http://img.b2bpic.net/free-photo/person-uses-tablet-governmental-cyber-security-room-working-russian-flag_482257-90680.jpg"
description="Where Ideas Rise Into Reality. RiseLab accelerates innovation through advanced technology infrastructure and expert collaboration. Transform your concept into market-ready solutions."
secondaryButton={{"href":"#about","text":"Learn More"}}
brand="RiseLab"
/>
</div>
);
}