4 Commits

Author SHA1 Message Date
1e93529c92 Update src/app/styles/base.css 2026-04-24 08:43:44 +00:00
acf3478cd8 Update src/app/page.tsx 2026-04-24 08:43:43 +00:00
c8b035b062 Merge version_3 into main
Merge version_3 into main
2026-04-24 08:39:06 +00:00
d839887b5f Merge version_3 into main
Merge version_3 into main
2026-04-24 08:38:43 +00:00
2 changed files with 10 additions and 4 deletions

View File

@@ -120,6 +120,8 @@ export default function LandingPage() {
<div id="faq" data-section="faq"> <div id="faq" data-section="faq">
<FaqBase <FaqBase
className="w-full max-w-full"
containerClassName="w-full max-w-full"
textboxLayout="split-description" textboxLayout="split-description"
useInvertedBackground={true} useInvertedBackground={true}
faqs={[ faqs={[
@@ -135,7 +137,9 @@ export default function LandingPage() {
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactSplitForm <ContactSplitForm
useInvertedBackground={false} className="w-full max-w-full"
containerClassName="w-full max-w-full"
useInvertedBackground={true}
title="LET'S BUILD TOGETHER" title="LET'S BUILD TOGETHER"
description="Reach out to discuss your infrastructure requirements with our specialist team." description="Reach out to discuss your infrastructure requirements with our specialist team."
inputs={[ inputs={[
@@ -150,6 +154,8 @@ export default function LandingPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseReveal <FooterBaseReveal
className="w-full max-w-full"
wrapperClassName="w-full max-w-full"
logoText="WARRIOR GROUP" logoText="WARRIOR GROUP"
columns={[ columns={[
{ title: "Corporate", items: [{ label: "About", href: "#" }, { label: "Careers", href: "#" }] }, { title: "Corporate", items: [{ label: "About", href: "#" }, { label: "Careers", href: "#" }] },

View File

@@ -11,7 +11,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-open-sans), sans-serif; font-family: var(--font-body);
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-open-sans), sans-serif; font-family: var(--font-headings);
} }