From 14b6ccf037feb185522c6154837a980e346d4b80 Mon Sep 17 00:00:00 2001 From: Timothy Adewuyi Date: Thu, 26 Feb 2026 08:20:17 +0100 Subject: [PATCH] feat(onboarding): implement welcome screen and feature highlights placeholder --- app/onboarding/feature-highlights/page.tsx | 29 +++++++++ app/onboarding/welcome/page.tsx | 72 ++++++++++++++++++++++ 2 files changed, 101 insertions(+) create mode 100644 app/onboarding/feature-highlights/page.tsx create mode 100644 app/onboarding/welcome/page.tsx diff --git a/app/onboarding/feature-highlights/page.tsx b/app/onboarding/feature-highlights/page.tsx new file mode 100644 index 0000000..67c9ea6 --- /dev/null +++ b/app/onboarding/feature-highlights/page.tsx @@ -0,0 +1,29 @@ +// Aframp/app/onboarding/feature-highlights/page.tsx +'use client' + +import Link from 'next/link' +import { ArrowLeft } from 'lucide-react' +import { Button } from '@/components/ui/button' + +export default function FeatureHighlightsPage() { + return ( +
+
+

Feature Highlights

+

This is a placeholder for the feature highlights screen.

+
+ + +
+
+
+ ) +} \ No newline at end of file diff --git a/app/onboarding/welcome/page.tsx b/app/onboarding/welcome/page.tsx new file mode 100644 index 0000000..34ca45e --- /dev/null +++ b/app/onboarding/welcome/page.tsx @@ -0,0 +1,72 @@ +// Aframp/app/onboarding/welcome/page.tsx +'use client' + +import Link from 'next/link' +import { motion } from 'framer-motion' +import { ArrowRight } from 'lucide-react' +import { Button } from '@/components/ui/button' // Assuming Button component is available + +export default function WelcomePage() { + return ( +
+ {/* Background Glow/Particles Effect (Placeholder) */} +
+
+ {/* Replace with actual particle/glow effect if implemented */} +
+
+
+ + + {/* Aframp Title/Logo */} +
+ {/* Placeholder for actual logo */} +
+ A +
+

+ Aframp +

+
+ + {/* Tagline & Supporting Text */} +
+

+ Welcome to the future of finance +

+

+ Experience secure transactions with military-grade encryption and multi-factor + authentication. Empowering your financial freedom with confidence. +

+
+ + {/* CTA Buttons */} +
+ + +
+
+
+ ) +}