Compare commits
8 Commits
version_5
...
version_10
| Author | SHA1 | Date | |
|---|---|---|---|
| 6f866031a7 | |||
| 3e90d4d08d | |||
| e3126ea284 | |||
| d41aed34e1 | |||
| dec7ed256d | |||
| 6f84a6d836 | |||
| 050edb6f2a | |||
| 432f03e74f |
@@ -495,7 +495,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-fraunces), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -508,5 +508,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-fraunces), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
}
|
||||
@@ -1,11 +1,11 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Fraunces } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const fraunces = Fraunces({
|
||||
variable: "--font-fraunces",
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
@@ -43,7 +43,7 @@ export default function RootLayout({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={fraunces.variable}
|
||||
className={inter.variable}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
@@ -1269,4 +1269,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user