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 { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-plus-jakarta-sans), sans-serif; font-family: var(--font-fraunces), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -508,5 +508,5 @@ h3,
h4, h4,
h5, h5,
h6 { 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 type { Metadata } from "next";
import { Plus_Jakarta_Sans } from "next/font/google"; import { Fraunces } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
const plusJakartaSans = Plus_Jakarta_Sans({ const fraunces = Fraunces({
variable: "--font-plus-jakarta-sans", variable: "--font-fraunces",
subsets: ["latin"], subsets: ["latin"],
}); });
@@ -43,7 +43,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body <body
className={plusJakartaSans.variable} className={fraunces.variable}
> >
<Tag /> <Tag />
{children} {children}

View File

@@ -43,7 +43,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroSplit <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." description="Enterprise-grade systems that handle complexity with precision. Automate the entire stack. Move faster. Scale without friction."
tag="Enterprise Platform" tag="Enterprise Platform"
tagIcon={Zap} tagIcon={Zap}