Skip to content

Commit c34bb30

Browse files
committed
feat: add About page with detailed platform information and features #deploy
1 parent ee8214d commit c34bb30

2 files changed

Lines changed: 54 additions & 2 deletions

File tree

src/pages/about.jsx

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
import React from 'react';
2+
3+
export default function About() {
4+
return (
5+
<div className="bg-gray-50 min-h-screen flex flex-col">
6+
<header className="bg-white p-4 shadow-md">
7+
<h1 className="text-2xl font-bold text-gray-900">NoteRep</h1>
8+
</header>
9+
<main className="flex-grow p-4 max-w-7xl mx-auto">
10+
<h1 className="text-4xl font-bold text-gray-900 mb-6">About NoteRep</h1>
11+
<p className="text-lg text-gray-700 mb-8">
12+
NoteRep is a comprehensive platform designed to support students and educators at MS Ramaiah Institute of Technology with resources, schedules, and interactive tools. Our mission is to streamline access to academic information and foster a collaborative learning environment.
13+
</p>
14+
15+
<h2 className="text-3xl font-bold text-gray-900 mb-6">Features</h2>
16+
<ul className="list-disc pl-5 space-y-2 text-lg text-gray-700">
17+
<li><span className="font-bold">Course Syllabi:</span> Access detailed syllabi for various semesters and departments including CSE, AI & ML, Cyber Security, and more.</li>
18+
<li><span className="font-bold">Timetables:</span> View and manage timetables for different years and departments with components like Timetable, Timetable1styear, and more.</li>
19+
<li><span className="font-bold">Chat & Bots:</span> Engage with interactive chat features and bots such as NoteRepBot, ExamRoastBot, and ComplimentBot for assistance and entertainment.</li>
20+
<li><span className="font-bold">Academic Resources:</span> Download documents and past papers for multiple semesters and courses directly from our public repository.</li>
21+
<li><span className="font-bold">Calendar & Schedules:</span> Stay updated with academic calendars and schedules tailored for different departments and years.</li>
22+
<li><span className="font-bold">Forum:</span> Participate in the NoteRep Forum to discuss topics, share notes, and collaborate with peers.</li>
23+
<li><span className="font-bold">Calculla:</span> Utilize our calculator tool for quick computations related to academic needs.</li>
24+
<li><span className="font-bold">CommuniLink:</span> Connect with community links and resources for additional support and networking.</li>
25+
<li><span className="font-bold">Newsletter:</span> Subscribe to our newsletter for the latest updates and announcements.</li>
26+
<li><span className="font-bold">Live Chat Support:</span> Get real-time assistance through our Live Chat Button integrated across the platform.</li>
27+
<li><span className="font-bold">SyllabusGPT:</span> An AI-powered tool to assist with syllabus queries and explanations.</li>
28+
<li><span className="font-bold">MiniSIS:</span> A simplified Student Information System for quick access to personal academic data.</li>
29+
<li><span className="font-bold">How It Works:</span> A dedicated guide to help users navigate and make the most of NoteRep's features.</li>
30+
</ul>
31+
32+
<h2 className="text-3xl font-bold text-gray-900 mt-10 mb-6">Developer Information</h2>
33+
<div className="bg-white p-6 rounded-lg shadow-md">
34+
<h3 className="text-xl font-semibold text-gray-900 mb-2">Shravan MR</h3>
35+
<p className="text-gray-700 mb-4">Lead Developer & Creator of NoteRep</p>
36+
<div className="flex space-x-4">
37+
<a href="mailto:shravan.mr@example.com" className="text-blue-600 hover:text-blue-800">
38+
Email
39+
</a>
40+
<a href="https://github.com/shravanmr" target="_blank" rel="noopener noreferrer" className="text-gray-800 hover:text-black">
41+
GitHub
42+
</a>
43+
<a href="https://linkedin.com/in/shravanmr" target="_blank" rel="noopener noreferrer" className="text-blue-700 hover:text-blue-900">
44+
LinkedIn
45+
</a>
46+
</div>
47+
</div>
48+
</main>
49+
<footer className="bg-gray-800 text-white p-4 text-center">
50+
<p>Platform developed by Shravan</p>
51+
</footer>
52+
</div>
53+
);
54+
}

src/pages/index.jsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import Head from 'next/head'
22
import { useEffect, useState } from 'react'
33
import { Footer } from '@/components/Footer'
4-
import { WhatsAppDialog } from '@/components/WhatsAppDialog'
54
import { Header } from '@/components/Header'
65
import { Hero } from '@/components/Hero'
76
import { Newsletter } from '@/components/Newsletter'
@@ -76,7 +75,6 @@ export default function Home() {
7675
<meta name="author" content="Shravan Revanna" />
7776
</Head>
7877
<div className="flex h-screen flex-col bg-indigo-50 dark:bg-gray-900 dark:text-gray-100">
79-
<WhatsAppDialog />
8078
<Header />
8179
<main>
8280
<Hero />

0 commit comments

Comments
 (0)