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