From 3ebb1e4d143256f28bd65dcf62dcd4a8af23ef3d Mon Sep 17 00:00:00 2001 From: Mayhem-7 Date: Sat, 4 Apr 2026 16:06:41 +0530 Subject: [PATCH] Stop --- app/globals.css | 41 ++++++++++++++++-- app/page.tsx | 111 ++++++++++++++++++++++++++---------------------- 2 files changed, 97 insertions(+), 55 deletions(-) diff --git a/app/globals.css b/app/globals.css index a2dc41e..95e93d5 100644 --- a/app/globals.css +++ b/app/globals.css @@ -1,8 +1,8 @@ @import "tailwindcss"; :root { - --background: #ffffff; - --foreground: #171717; + --background: #87ceeb; /* Sky blue */ + --foreground: #0f172a; /* Dark slate */ } @theme inline { @@ -14,13 +14,46 @@ @media (prefers-color-scheme: dark) { :root { - --background: #0a0a0a; - --foreground: #ededed; + --background: #0ea5e9; /* Deeper sky blue for dark mode */ + --foreground: #f8fafc; } } +html { + scroll-behavior: smooth; +} + body { background: var(--background); color: var(--foreground); font-family: Arial, Helvetica, sans-serif; + font-size: 1.125rem; /* Increased base font size */ +} + +/* Custom animation classes */ +@keyframes fadeInUp { + from { + opacity: 0; + transform: translateY(20px); + } + to { + opacity: 1; + transform: translateY(0); + } +} + +.animate-fade-in-up { + animation: fadeInUp 0.8s ease-out forwards; +} + +.animate-delay-100 { + animation-delay: 100ms; +} + +.animate-delay-200 { + animation-delay: 200ms; +} + +.animate-delay-300 { + animation-delay: 300ms; } diff --git a/app/page.tsx b/app/page.tsx index 295f8fd..8681af0 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -2,62 +2,71 @@ import Image from "next/image"; export default function Home() { return ( -
-
- Next.js logo -
-

- To get started, edit the page.tsx file. +
+ + {/* Background Animated Gradient Orbs */} +
+
+
+ + {/* Main Glassmorphic Container */} +
+ + {/* Glass Card */} +
+ +
+ + + + + Meet UniSync 2.0 +
+ +

+ Master Your Time,
+ + Ace Your Classes. +

-

- Looking for a starting point or more instructions? Head over to{" "} + +

+ AI-powered schedule optimization that syncs directly with your university. Find your best times to study, collaborate, and relax without the guesswork. +

+ + {/* Call To Action Buttons */} +
- Templates - {" "} - or the{" "} + Start Free Trial + + + + + - Learning - {" "} - center. -

-
-
- - Vercel logomark - Deploy Now - - - Documentation - + Watch Demo + + + + +
+ + {/* Social Proof */} +
+

Trusted by students at

+
+ {['Stanford', 'MIT', 'Harvard', 'Oxford'].map((uni) => ( + {uni} + ))} +
+
+