diff --git a/app/page.tsx b/app/page.tsx index f3d9a4c..ee0bd56 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -17,21 +17,24 @@ function DashboardPreview() { {/* * Glow behind the image */}
- {/* * The Dashboard Image Container */} -
- {/* * Header of the fake browser window */} -
-
-
-
-
- - {/* * Placeholder for actual dashboard screenshot - replace src with real image later */} -
-
- -

Dashboard Preview

-
+ {/* * 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

+
+
diff --git a/styles/globals.css b/styles/globals.css index 89290cd..ec07353 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -52,4 +52,31 @@ .glow-orange { box-shadow: 0 0 40px -10px rgba(253, 94, 15, 0.5); } + + /* * 3D Transform Utilities */ + .perspective-1000 { + perspective: 1000px; + } + + .rotate-x-12 { + transform: rotateX(12deg); + } + + .rotate-x-0 { + transform: rotateX(0deg); + } + + .transform-style-3d { + transform-style: preserve-3d; + } + + /* * Animations */ + @keyframes float { + 0%, 100% { transform: translateY(0px); } + 50% { transform: translateY(-20px); } + } + + .animate-float { + animation: float 6s ease-in-out infinite; + } }