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
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() {
-
-
-
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;
}
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);