From 1b5fcc2411a99c5b0b79c5cf4ba2928fd7ce413f Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 05:52:49 +0000 Subject: [PATCH 1/4] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 47 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..49fccc0 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,47 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; + +export default function ContactPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Features", id: "/#features" }, + { name: "Pricing", id: "/#pricing" }, + { name: "Contact", id: "/contact" }, + ]; + + return ( + + + +
+ +
+ +
+
+ ); +} \ No newline at end of file -- 2.49.1 From 1adc7a14ccced9b95761e90c03d655d47d25ef13 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 05:52:49 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 22 +++++----------------- 1 file changed, 5 insertions(+), 17 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 57f8802..2cfd7dc 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -14,7 +14,7 @@ export default function SaasTemplatePage() { const navItems = [ { name: "Features", id: "features" }, { name: "Pricing", id: "pricing" }, - { name: "Contact", id: "contact" }, + { name: "Contact", id: "/contact" }, ]; const avatars = [ @@ -30,7 +30,7 @@ export default function SaasTemplatePage() { -
- -
-- 2.49.1 From 7a8186bdcce8f7b068ae8aa2a976a4b8fba8310e Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 05:52:49 +0000 Subject: [PATCH 3/4] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index a25430f..aa20261 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-inter-tight), sans-serif; + font-family: var(--font-nunito-sans), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-inter-tight), sans-serif; + font-family: var(--font-libre-baskerville), serif; } -- 2.49.1 From 60b2c6f838a2809946396adae64f2eeeb5cd4b6b Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 05:52:50 +0000 Subject: [PATCH 4/4] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 76c7cc4..768fce9 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #050012; - --card: #040121; - --foreground: #f0e6ff; - --primary-cta: #c89bff; + --background: #0a0a0a; + --card: #1a1a1a; + --foreground: #ffffff; + --primary-cta: #20b2aa; --primary-cta-text: #050012; - --secondary-cta: #1d123b; + --secondary-cta: #1a1a1a; --secondary-cta-text: #f0e6ff; - --accent: #684f7b; - --background-accent: #65417c; + --accent: #008080; + --background-accent: #005f5f; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1