diff --git a/app/dashboard/page.tsx b/app/dashboard/page.tsx index 5d99d50..373ff4e 100644 --- a/app/dashboard/page.tsx +++ b/app/dashboard/page.tsx @@ -1,5 +1,8 @@ +"use client"; + import Link from "next/link"; import { GraduationCap, BookOpen, FileText, Sparkles } from "lucide-react"; +import { motion } from "framer-motion"; import { QuickActionCard } from "@/components/dashboard/quick-action-card"; import { RecentActivityCard } from "@/components/dashboard/recent-activity-card"; @@ -23,7 +26,13 @@ export default function DashboardPage() {
{/* 1. Premium Welcome Banner (Full Width) */} -
+ {/* Ambient Background Glow (Dark Mode only) */}
@@ -86,11 +95,21 @@ export default function DashboardPage() {
-
+
{/* 2. Continue Learning Section (Left side) */} -
+

Start your journey @@ -124,10 +143,20 @@ export default function DashboardPage() { type="file" />

-
+ {/* 3. Quick Actions (Right side grid) */} -
+

Quick Actions @@ -163,7 +192,7 @@ export default function DashboardPage() { colorVariant="purple" />

-
+
diff --git a/app/rgpv/page.tsx b/app/rgpv/page.tsx index 3288c07..c14e957 100644 --- a/app/rgpv/page.tsx +++ b/app/rgpv/page.tsx @@ -1,6 +1,6 @@ import UniversityHero from "@/components/university/university-hero"; import BranchGrid from "@/components/university/branch-grid"; -import QuickAccess from "@/components/university/quick-access"; +import DashboardPage from "@/app/dashboard/page"; export default function RGPVPage() { return ( @@ -33,8 +33,8 @@ export default function RGPVPage() { {/* Branch Selection */} - {/* Academic Navigation */} - + {/* Dashboard */} + ); diff --git a/components/university/branch-grid.tsx b/components/university/branch-grid.tsx index 41e1681..a15637c 100644 --- a/components/university/branch-grid.tsx +++ b/components/university/branch-grid.tsx @@ -49,46 +49,48 @@ export default function BranchGrid() { return (
- {/* Background Glow */} -
-
-
+ {/* Premium Glowing Top Separator */} +
+
+ + {/* Premium Wavy Aurora Background */} +
+ {/* Sweeping Wavy Gradient Blobs */} +
+
+
{/* Header */} -
+
+ + + + Engineering Branches
-

+

Choose Your - + Branch

-

- Browse branch-specific syllabus, previous year questions, Hyper AI - learning resources, and academic content organized semester by - semester. +

+ Access high-quality academic content, analyze previous year + questions, and accelerate your learning with Hyper AI—intelligently + organized by semester.

@@ -100,73 +102,74 @@ export default function BranchGrid() { const CardContent = ( - {/* Glow */} -
-
+ {/* Premium Inner Glow on Hover (Light Mode Only) */} +
+
+
- {/* Header */} -
-
- +
+ {/* Header */} +
+
+ +
+ +
+
+ {branch.status === "Available" ? "Live" : "Soon"} +
- - {branch.status === "Available" ? "Live" : "Soon"} - -
- - {/* Content */} -
-

- {branch.id.toUpperCase()} -

+ {/* Content */} +
+

+ {branch.id.toUpperCase()} +

-

- {branch.name} -

+

+ {branch.name} +

-
- {config.subjects} +
+
+ {config.subjects} +
-
- {/* Footer */} -
- {branch.status === "Available" ? ( - <> - - Explore + {/* Footer */} +
+ {branch.status === "Available" ? ( +
+ + Explore + +
+ +
+
+ ) : ( + + Planned - - - - ) : ( - - Planned - - )} + )} +
); @@ -176,7 +179,7 @@ export default function BranchGrid() { {CardContent} @@ -187,31 +190,32 @@ export default function BranchGrid() { })}
- {/* Bottom Notice */} + {/* Bottom Section - Premium Floating Text */} -

- Expanding Across Engineering Disciplines + {/* Ethereal background glow */} +
+ +

+ Built for Every{" "} + + Engineering Discipline +

-

- Hyper Learning is being structured to support every major RGPV - engineering branch through syllabus-driven learning, AI-generated - academic resources, and previous year question analysis. +

+ Hyper Learning is expanding to support all major RGPV branches. We + combine structured academic curriculums with AI-powered resources to + deliver a seamless, high-quality learning experience.

+ + {/* Elegant fading divider */} +

diff --git a/components/university/university-hero.tsx b/components/university/university-hero.tsx index 0b5892f..134e3d5 100644 --- a/components/university/university-hero.tsx +++ b/components/university/university-hero.tsx @@ -9,16 +9,17 @@ export default function UniversityHero() { hidden: { opacity: 0 }, visible: { opacity: 1, - transition: { staggerChildren: 0.1, delayChildren: 0.1 }, + transition: { staggerChildren: 0.15, delayChildren: 0.1 }, }, }; const itemVariants: Variants = { - hidden: { opacity: 0, y: 15 }, + hidden: { opacity: 0, y: 30, scale: 0.96 }, visible: { opacity: 1, y: 0, - transition: { duration: 0.6, ease: [0.16, 1, 0.3, 1] }, + scale: 1, + transition: { duration: 0.8, ease: [0.25, 1, 0.5, 1] }, }, };