diff --git a/app/page.tsx b/app/page.tsx index ee0bd56..bca8ca9 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -2,6 +2,7 @@ import { useEffect, useState } from 'react' import Link from 'next/link' +import { motion } from 'framer-motion' import { useAuth } from '@/lib/auth/context' import { initiateOAuthFlow, initiateSignupFlow } from '@/lib/api/oauth' import { listSites, deleteSite, type Site } from '@/lib/api/sites' @@ -13,30 +14,34 @@ import { toast } from '@ciphera-net/ui' function DashboardPreview() { return ( -
+
{/* * Glow behind the image */}
- {/* * Floating Wrapper */} -
- {/* * The Dashboard Image Container */} -
- {/* * Header of the fake browser window */} -
-
-
-
-
- - {/* * Placeholder for actual dashboard screenshot - replace src with real image later */} -
-
- -

Dashboard Preview

-
-
+ {/* * Animated Container */} + + {/* * Header of the fake browser window */} +
+
+
+
-
+ + {/* * Placeholder for actual dashboard screenshot - replace src with real image later */} +
+
+ +

Dashboard Preview

+
+
+
) }