From e9f7cf3eaffecf2966b168feebd0983bb0f02b48 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 5 Apr 2026 19:05:50 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 316 +++++++++++++---------------------------------- 1 file changed, 86 insertions(+), 230 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index faafbe2..d5dcaf3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,247 +9,103 @@ import FooterSimple from '@/components/sections/footer/FooterSimple'; import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import { Heart, Sparkles } from "lucide-react"; +import { Heart, Sparkles, Smile, PartyPopper } from "lucide-react"; +import { useState } from "react"; + +export default function ProposalPage() { + const [accepted, setAccepted] = useState(false); -export default function LandingPage() { return ( - + -
- -
+
+ setAccepted(true) }, + { text: "Maybe later?", onClick: () => alert("Nice try! You're stuck with me! 😘") } + ] : []} + imageSrc="http://img.b2bpic.net/free-photo/front-view-black-heart-box-colored-flowers-dark-grey-abstract-background_140725-145184.jpg" + imageAlt="Romantic proposal" + /> +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
- - +
); -} +} \ No newline at end of file