From ba584a1009d001d3a068efdfcd3720ce695dcaba Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 19:12:41 +0000 Subject: [PATCH 1/3] Update src/app/app/analysis/page.tsx --- src/app/app/analysis/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/app/analysis/page.tsx b/src/app/app/analysis/page.tsx index e02c7b7..5265db3 100644 --- a/src/app/app/analysis/page.tsx +++ b/src/app/app/analysis/page.tsx @@ -53,7 +53,7 @@ export default function AnalysisPage() { ]} buttonAnimation="blur-reveal" background={{ - variant: "circleGradient"}} + variant: "sparkles-gradient"}} imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APwwOLAi7FRFmXwzrAtyS9aqHm/minimalist-smartphone-ui-mockup-with-dra-1772824074568-0432c972.jpg" imageAlt="FORMA upload interface demo" mediaAnimation="slide-up" -- 2.49.1 From 456655b7ef8ccd3e7111de5d85137a1167fe6f14 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 19:12:42 +0000 Subject: [PATCH 2/3] Update src/app/app/upload/page.tsx --- src/app/app/upload/page.tsx | 192 ++++++++++++++++++++++-------------- 1 file changed, 117 insertions(+), 75 deletions(-) diff --git a/src/app/app/upload/page.tsx b/src/app/app/upload/page.tsx index 5cfe65e..b59d6bc 100644 --- a/src/app/app/upload/page.tsx +++ b/src/app/app/upload/page.tsx @@ -1,49 +1,16 @@ "use client"; -import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard"; import FeatureCardOne from "@/components/sections/feature/FeatureCardOne"; +import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo"; +import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import { Sparkles } from "lucide-react"; +import Link from "next/link"; export default function UploadPage() { - const navItems = [ - { name: "Features", id: "features" }, - { name: "How It Works", id: "how-it-works" }, - { name: "Pricing", id: "pricing" }, - { name: "FAQ", id: "faq" }, - ]; - - const footerColumns = [ - { - title: "Product", - items: [ - { label: "Features", href: "/" }, - { label: "Pricing", href: "/#pricing" }, - { label: "FAQ", href: "/#faq" }, - { label: "Home", href: "/" }, - ], - }, - { - title: "Company", - items: [ - { label: "About", href: "#" }, - { label: "Blog", href: "/blog" }, - { label: "Careers", href: "/careers" }, - { label: "Contact", href: "/contact" }, - ], - }, - { - title: "Legal", - items: [ - { label: "Privacy", href: "/privacy" }, - { label: "Terms", href: "/terms" }, - { label: "Status", href: "https://status.forma.app" }, - ], - }, - ]; - return ( -
+
-
+
-