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.
+
+
+
+ Back to Welcome
+
+
+
+
+ Go to Dashboard
+
+
+
+
+
+ )
+}
\ 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 */}
+
+
+
+ Get Started
+
+
+
+
+ Skip Introduction
+
+
+
+
+
+ )
+}