Welcome to the CUET Students Directory - a comprehensive Next.js application for browsing and searching CUET student information with a modern, responsive interface.
🔍 Live Demo: https://cuet.sayed.app/
- 🔍 Student Search: Search students by name with intelligent filtering
- 📊 Batch Browser: Browse students by department and batch (12-24)
- 👤 Student Profiles: Detailed individual student pages with metadata
- 🏛️ Department Listings: Organized by departments with student counts
- 📱 Responsive Design: Modern UI with Tailwind CSS
- ⚡ Fast Performance: Built with Next.js 14 and edge runtime
- 🔗 SEO Optimized: Complete sitemap with 7k+ student profiles
- 🗃️ Database Integration: Powered by Supabase
- Framework: Next.js 14.2.30 with App Router
- Database: Supabase (PostgreSQL)
- Styling: Tailwind CSS
- TypeScript: Full type safety
- Deployment: Vercel (edge runtime)
- Icons: React Icons
- Data: 7,691+ student records
Retrieve detailed student information.
Example Response:
{
"name": "ASHIKUL ISLAM",
"studentid": "2304001",
"department": "Department of Computer Science & Engineering",
"admission_roll": "112120",
"admission_merit": "232",
"batch": "23",
"session": "2023-24"
}Search students by name.
Example Response:
{
"results": [
{
"name": "MD. ASHIKUL ISLAM",
"studentid": "2304001",
"department": "Department of Computer Science & Engineering",
"batch": "23"
}
],
"total": 1
}Get all students in a specific department and batch.
Example Response:
{
"department": "Department of Computer Science & Engineering",
"departmentCode": "CSE",
"batch": "23",
"session": "2023-24",
"totalStudents": 132,
"students": [
{
"name": "ASHIKUL ISLAM",
"studentid": "2304001",
"department": "Department of Computer Science & Engineering",
"admission_roll": "112120",
"admission_merit": "232",
"batch": "23",
"session": "2023-24"
}
]
}Supported Departments:
cse- Computer Science & Engineeringeee- Electrical & Electronic Engineeringcivil- Civil Engineeringme- Mechanical Engineeringarch- Architecturebme- Biomedical Engineering- And more...
- Student Information: Access detailed profiles including student ID, name, department, and more.
- Batch Listings: Retrieve lists of students for specific departments and batches.
-
Clone the repository:
git clone https://github.com/abusayed0206/cuet.git cd cuet -
Install dependencies:
bun install # or npm install -
Set up environment variables: Create a
.env.localfile in the root directory:NEXT_PUBLIC_SUPABASE_URL=your_supabase_url NEXT_PUBLIC_SUPABASE_ANON_KEY=your_supabase_anon_key SUPABASE_SERVICE_KEY=your_supabase_service_key
-
Run the development server:
bun dev # or npm run dev -
Open your browser: Navigate to http://localhost:3000
The main database table cuet contains:
studentid- Unique student identifiername- Student's full namebatch- Academic batch (e.g., "19", "20", "21")session- Academic session (e.g., "2019-20")department- Full department namehall- Residential hall namepublic_email- Contact emaildplink- Profile picture URLcurrentstatus- Current status/biolinkedin- LinkedIn profile URL
bun dev- Start development serverbun build- Build for productionbun start- Start production servernode generate-sitemap.js- Generate sitemap from CSV data
Your contributions are welcome! Here’s how you can help:
- Beautify the Code: Enhance the code's appearance and structure.
- Maintain the Project: Contact me at sayed.page/contact from your academic email, and I'll grant you direct write permissions. Alternatively, you can open a pull request (PR).
When adding new features, please create a new branch and submit a PR. This helps keep the project organized and manageable.
The code in this repository might contain errors, typos, or logical issues. As I am not from a CS background and have utilized multiple AI assistants like GitHub Copilot, ClaudeAI, and ChatGPT for coding, please forgive any mistakes and contribute by submitting PRs to help improve the project.
For any queries, reach out at sayed.page.