From 7777f2c313cd2c5e77fdaca598820024a61e5da3 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 12 Apr 2026 08:04:19 +0000 Subject: [PATCH 1/2] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 116 +++++++-------------------------------- 1 file changed, 20 insertions(+), 96 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 4eba429..0f86d67 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,105 +1,29 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; -import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; -export default function LandingPage() { +export default function ContactPage() { return ( - - - - -
- -
- -
- -
- - -
+ + +
+ +
); } -- 2.49.1 From 91ec4e953fe6a33a0841dab27261ad88396defbf Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 12 Apr 2026 08:04:19 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6165a69..b0b33d3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -82,8 +82,8 @@ export default function LandingPage() { title="Core Features" description="What sets us apart." features={[ - { title: "Speed", description: "Lightning fast transactions" }, - { title: "Security", description: "Bank grade protection" } + { title: "Speed", description: "Lightning fast transactions", imageSrc: "", titleIconSrc: "", buttonText: "Learn More" }, + { title: "Security", description: "Bank grade protection", imageSrc: "", titleIconSrc: "", buttonText: "Learn More" } ]} animationType="slide-up" textboxLayout="default" -- 2.49.1