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" 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 ( -
+
-
+
-