import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"; import { Table, TableHeader, TableRow, TableCell, TableBody } from "@/components/ui/table"; export default function TeacherDashboard() { return (

Teacher Dashboard

Course Overview Class Management Student Roster Reports {/* COURSE OVERVIEW */}

Active Modules

  • Human Prenatal Development
  • Human Cognition (Coming Soon)
{/* CLASS MANAGEMENT */}

Your Classes

  • 7A - 23 Students
  • 7B - 18 Students
{/* STUDENT ROSTER */}

Students in Class 7A

Name Email Progress Status Emily Parker emily@school.org 3 of 5 Investigations In Progress Lucas Ramirez lucas@school.org 5 of 5 Investigations Completed
{/* REPORTING */}

Quiz Reports

Download quiz scores and view class averages.

); }