Merge version_1 into main #2

Merged
bender merged 6 commits from version_1 into main 2026-03-03 09:52:06 +00:00
Showing only changes of commit e2bece3d9b - Show all commits

View File

@@ -17,8 +17,7 @@ const navItems = [
const footerColumns = [
{
title: "Product",
items: [
title: "Product", items: [
{ label: "Dashboard", href: "/" },
{ label: "Features", href: "#features" },
{ label: "Pricing", href: "#pricing" },
@@ -26,8 +25,7 @@ const footerColumns = [
],
},
{
title: "Resources",
items: [
title: "Resources", items: [
{ label: "Documentation", href: "/docs" },
{ label: "API Reference", href: "/api-docs" },
{ label: "Tutorials", href: "/tutorials" },
@@ -35,8 +33,7 @@ const footerColumns = [
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Blog", href: "/blog" },
{ label: "Careers", href: "/careers" },
@@ -44,8 +41,7 @@ const footerColumns = [
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "/privacy" },
{ label: "Terms of Service", href: "/terms" },
{ label: "Security", href: "/security" },
@@ -99,35 +95,17 @@ export default function StudentsPage() {
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 mb-12">
{[
{
title: "Bulk Upload CSV",
subtitle: "Batch Import",
desc: "Import multiple students at once using CSV files",
},
title: "Bulk Upload CSV", subtitle: "Batch Import", desc: "Import multiple students at once using CSV files"},
{
title: "Manual Add Student",
subtitle: "Individual Entry",
desc: "Add students one by one with full details",
},
title: "Manual Add Student", subtitle: "Individual Entry", desc: "Add students one by one with full details"},
{
title: "Status Management",
subtitle: "Suspend / Activate",
desc: "Control student access and account status",
},
title: "Status Management", subtitle: "Suspend / Activate", desc: "Control student access and account status"},
{
title: "Student Details",
subtitle: "Performance View",
desc: "View comprehensive student profiles and scores",
},
title: "Student Details", subtitle: "Performance View", desc: "View comprehensive student profiles and scores"},
{
title: "Search Students",
subtitle: "Quick Lookup",
desc: "Find students by name, ID, or college",
},
title: "Search Students", subtitle: "Quick Lookup", desc: "Find students by name, ID, or college"},
{
title: "Track Performance",
subtitle: "Analytics View",
desc: "Monitor individual and cohort performance metrics",
},
title: "Track Performance", subtitle: "Analytics View", desc: "Monitor individual and cohort performance metrics"},
].map((item, idx) => (
<div
key={idx}
@@ -157,34 +135,18 @@ export default function StudentsPage() {
description="Leading students across your evaluation platform by overall performance scores"
metrics={[
{
id: "student-1",
title: "Rajesh Kumar",
subtitle: "Tech Institute Mumbai · Core Track",
category: "Premium",
value: "94.5% Score",
buttons: [{ text: "View", href: "/students" }],
id: "student-1", title: "Rajesh Kumar", subtitle: "Tech Institute Mumbai · Core Track", category: "Premium", value: "94.5% Score", buttons: [{ text: "View", href: "/students" }],
},
{
id: "student-2",
title: "Priya Sharma",
subtitle: "Delhi University · DSA Track",
category: "Advanced",
value: "92.3% Score",
buttons: [{ text: "View", href: "/students" }],
id: "student-2", title: "Priya Sharma", subtitle: "Delhi University · DSA Track", category: "Advanced", value: "92.3% Score", buttons: [{ text: "View", href: "/students" }],
},
{
id: "student-3",
title: "Akshay Verma",
subtitle: "Bangalore Tech Institute · SQL Track",
category: "Advanced",
value: "91.8% Score",
buttons: [{ text: "View", href: "/students" }],
id: "student-3", title: "Akshay Verma", subtitle: "Bangalore Tech Institute · SQL Track", category: "Advanced", value: "91.8% Score", buttons: [{ text: "View", href: "/students" }],
},
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
gridVariant="uniform-all-items-equal"
uniformGridCustomHeightClasses="min-h-80 2xl:min-h-96"
/>
</div>