From 0fef27dc53c273241b6636ff7749ddaa5a95a671 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 07:05:06 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0f4a290..c626ede 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,13 +1,12 @@ import type { Metadata } from "next"; -import { Poppins } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); const inter = Inter({ @@ -15,19 +14,19 @@ const inter = Inter({ }); export const metadata: Metadata = { - title: "FinanTech - Secure Investment Platform for Private Businesses", description: "Connect private businesses with smart investors on FinanTech, a secure platform for capital raising and investment opportunities. Modern fintech solutions for entrepreneurs.", keywords: "fintech, investment platform, capital raising, private business funding, investor network, secure platform", metadataBase: new URL("https://financtech.example.com"), + title: "FinanTech - Premium Investment Platform", description: "Experience next-generation fintech investment intelligence. Connect with vetted opportunities, harness AI-powered analytics, and grow your portfolio with confidence.", keywords: "fintech, investment platform, AI investment, capital raising, private business funding, investor network, secure platform, investment intelligence", metadataBase: new URL("https://financtech.example.com"), alternates: { canonical: "https://financtech.example.com" }, openGraph: { - title: "FinanTech - Capital Meets Opportunity", description: "A secure investment platform connecting private businesses with smart investors.", type: "website", siteName: "FinanTech", url: "https://financtech.example.com", images: [ + title: "FinanTech - Premium Investment Intelligence", description: "Next-generation fintech platform with AI-powered investment analytics and secure capital connections.", type: "website", siteName: "FinanTech", url: "https://financtech.example.com", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQJGP8gArLWRfHJt1tHsEBVGMy/abstract-3d-gradient-sphere-with-neon-pu-1772518823262-e21370ad.png", alt: "FinanTech Investment Platform" } ] }, twitter: { - card: "summary_large_image", title: "FinanTech - Capital Meets Opportunity", description: "Secure investment platform connecting businesses with smart investors.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQJGP8gArLWRfHJt1tHsEBVGMy/abstract-3d-gradient-sphere-with-neon-pu-1772518823262-e21370ad.png"] + card: "summary_large_image", title: "FinanTech - Premium Investment Intelligence", description: "AI-powered fintech platform for smart investing.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQJGP8gArLWRfHJt1tHsEBVGMy/abstract-3d-gradient-sphere-with-neon-pu-1772518823262-e21370ad.png"] }, robots: { index: true, @@ -44,7 +43,7 @@ export default function RootLayout({ {children} -- 2.49.1 From f21316ca797a0b5cb96e4b130e1b9355a4f64682 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 07:05:07 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 142 +++++++++++++++++++++++++++++++++-------------- 1 file changed, 99 insertions(+), 43 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 25704d0..ee4bd0e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwen import ProductCardFour from '@/components/sections/product/ProductCardFour'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; import TextAbout from '@/components/sections/about/TextAbout'; -import { ArrowRight, Zap, Lock, TrendingUp, Users, Award } from 'lucide-react'; +import { ArrowRight, Zap, Lock, TrendingUp, Users, Award, Sparkles, Brain, BarChart3, Shield, Rocket, Target } from 'lucide-react'; export default function LandingPage() { return ( @@ -20,7 +20,7 @@ export default function LandingPage() { contentWidth="smallMedium" sizing="largeSmallSizeMediumTitles" background="noiseDiagonalGradient" - cardStyle="inset" + cardStyle="glass-elevated" primaryButtonStyle="primary-glow" secondaryButtonStyle="solid" headingFontWeight="semibold" @@ -30,25 +30,27 @@ export default function LandingPage() { brandName="FinanTech" navItems={[ { name: "Home", id: "hero" }, - { name: "How It Works", id: "how-it-works" }, - { name: "Features", id: "features" }, - { name: "Projects", id: "projects" } + { name: "Problem", id: "problem" }, + { name: "Solution", id: "solution" }, + { name: "AI Intelligence", id: "ai-intelligence" }, + { name: "Dashboard", id: "dashboard" }, + { name: "Testimonials", id: "trust" } ]} button={{ - text: "Get Started", href: "#" + text: "Get Started", href: "#contact" }} - buttonClassName="bg-gradient-to-r from-[#7B2FF7] to-[#00C6FF] hover:shadow-lg hover:shadow-purple-500/50 transition-all duration-300" - className="fixed top-6 left-1/2 transform -translate-x-1/2 z-50 bg-white/5 backdrop-blur-xl border border-white/10 rounded-full shadow-lg" + buttonClassName="bg-gradient-to-r from-[#7B2FF7] via-[#00C6FF] to-[#7B2FF7] hover:shadow-lg hover:shadow-purple-500/50 transition-all duration-300 text-white font-semibold" + className="fixed top-6 left-1/2 transform -translate-x-1/2 z-50 bg-gradient-to-b from-white/10 to-white/5 backdrop-blur-2xl border border-white/20 rounded-full shadow-2xl" />
-
+
-
+
+
+ +
+ +
+ +
+
-
+
@@ -193,7 +249,7 @@ export default function LandingPage() { rightLink={{ text: "Terms of Service", href: "#" }} - className="bg-gradient-to-t from-[#0B0B0F] to-transparent border-t border-white/5" + className="bg-gradient-to-t from-[#0B0B0F] via-[#1a1a24]/50 to-transparent border-t border-white/10" />
-- 2.49.1 From df0535b3cf957b8251989ef09eea252749d07a5d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 07:05:08 +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 34aea07..c480bac 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), sans-serif; + font-family: var(--font-dm-sans), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-inter), sans-serif; + font-family: var(--font-dm-sans), sans-serif; } -- 2.49.1 From 9b7ce599d575e242732b3b7c8ad5e8b49cfc188b Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 07:05:09 +0000 Subject: [PATCH 4/4] Update src/app/styles/variables.css --- src/app/styles/variables.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 0f0ee88..b2a4280 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -3,7 +3,7 @@ /* --vw is set by ThemeProvider */ /* --background: #0B0B0F;; - --card: #1a1a24;; + --card: #1a1a2e;; --foreground: #ffffff;; --primary-cta: #7B2FF7;; --secondary-cta: #00C6FF;; @@ -11,7 +11,7 @@ --background-accent: #7B2FF7;; */ --background: #0B0B0F;; - --card: #1a1a24;; + --card: #1a1a2e;; --foreground: #ffffff;; --primary-cta: #7B2FF7;; --primary-cta-text: #ffffff;; -- 2.49.1