4 Commits

Author SHA1 Message Date
45d1779274 Update src/app/page.tsx 2026-01-04 19:05:37 +00:00
e05f540ce5 Update src/app/layout.tsx 2026-01-04 19:05:36 +00:00
9fd0e855ee Update src/app/globals.css 2026-01-04 19:05:35 +00:00
8f9a4e3fac Update src/app/page.tsx 2026-01-04 19:01:55 +00:00
3 changed files with 9 additions and 9 deletions

View File

@@ -495,7 +495,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-plus-jakarta-sans), sans-serif;
font-family: var(--font-fraunces), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -508,5 +508,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-plus-jakarta-sans), sans-serif;
font-family: var(--font-fraunces), sans-serif;
}

View File

@@ -1,11 +1,11 @@
import type { Metadata } from "next";
import { Plus_Jakarta_Sans } from "next/font/google";
import { Fraunces } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const plusJakartaSans = Plus_Jakarta_Sans({
variable: "--font-plus-jakarta-sans",
const fraunces = Fraunces({
variable: "--font-fraunces",
subsets: ["latin"],
});
@@ -43,7 +43,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={plusJakartaSans.variable}
className={fraunces.variable}
>
<Tag />
{children}
@@ -1269,4 +1269,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -43,7 +43,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroSplit
title="Infrastructure, software, and intelligence unified."
title="Where 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}
@@ -318,4 +318,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}