15 Commits

Author SHA1 Message Date
c16597634e Merge version_10 into main
Merge version_10 into main
2026-01-04 23:18:14 +00:00
6f866031a7 Update src/app/page.tsx 2026-01-04 23:18:09 +00:00
3e90d4d08d Update src/app/layout.tsx 2026-01-04 23:18:08 +00:00
6a41e0e9b4 Merge version_9 into main
Merge version_9 into main
2026-01-04 19:29:44 +00:00
e3126ea284 Update src/app/page.tsx 2026-01-04 19:29:39 +00:00
99d645a2d4 Merge version_8 into main
Merge version_8 into main
2026-01-04 19:19:50 +00:00
d41aed34e1 Update src/app/page.tsx 2026-01-04 19:19:46 +00:00
ffb43cd393 Merge version_8 into main
Merge version_8 into main
2026-01-04 19:17:52 +00:00
dec7ed256d Update src/app/page.tsx 2026-01-04 19:17:48 +00:00
6f84a6d836 Update src/app/page.tsx 2026-01-04 19:11:25 +00:00
9bc3169ac5 Merge version_6 into main
Merge version_6 into main
2026-01-04 19:07:56 +00:00
c260b2d679 Merge version_5 into main
Merge version_5 into main
2026-01-04 19:05:42 +00:00
2d6adf1aa4 Merge version_4 into main
Merge version_4 into main
2026-01-04 19:02:00 +00:00
4568d570d6 Merge version_3 into main
Merge version_3 into main
2026-01-04 18:49:37 +00:00
6028d4d32d Merge version_2 into main
Merge version_2 into main
2026-01-04 18:41:02 +00:00
2 changed files with 15 additions and 6 deletions

View File

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

View File

@@ -3,7 +3,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroSplit from '@/components/sections/hero/HeroSplit';
import TagAbout from '@/components/sections/about/TagAbout';
import MediaSplitAbout from '@/components/sections/about/MediaSplitAbout';
import FeatureCardThirteen from '@/components/sections/feature/FeatureCardThirteen';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import ProductCardFive from '@/components/sections/product/ProductCardFive';
@@ -43,7 +43,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroSplit
title="Where Infrastructure Transcends Into Art"
title="Infrastructure Transcends Into Art"
description="Enterprise-grade systems that handle complexity with precision. Automate the entire stack. Move faster. Scale without friction."
tag="Enterprise Platform"
tagIcon={Zap}
@@ -59,10 +59,16 @@ export default function LandingPage() {
</div>
<div id="system-architecture" data-section="system-architecture">
<TagAbout
tag="How It Works"
<MediaSplitAbout
title="How It Works"
description="Our platform bridges software, infrastructure, and intelligent automation into a unified system. Each layer solves specific problems and amplifies the next. No fragmentation. No manual bridges. Pure orchestration."
imageSrc="https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=600&h=400&fit=crop"
imageAlt="infrastructure architecture technology system"
imagePosition="right"
useInvertedBackground="noInvert"
buttons={[
{ text: "Learn More", href: "features" }
]}
/>
</div>
@@ -98,6 +104,7 @@ export default function LandingPage() {
gridVariant="uniform-all-items-equal"
animationType="slide-up"
useInvertedBackground="noInvert"
cardDescriptionClassName="text-neutral-300/90 font-medium contrast-75"
/>
</div>
@@ -203,6 +210,7 @@ export default function LandingPage() {
gridVariant="uniform-all-items-equal"
animationType="slide-up"
useInvertedBackground="noInvert"
cardDescriptionClassName="text-neutral-200/95 font-semibold contrast-100"
/>
</div>
@@ -268,6 +276,7 @@ export default function LandingPage() {
gridVariant="uniform-all-items-equal"
animationType="slide-up"
useInvertedBackground="noInvert"
cardDescriptionClassName="text-neutral-200/95 font-bold contrast-125"
/>
</div>
@@ -318,4 +327,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}