diff --git a/src/App.js b/src/App.js index d0fd27f..e557fbd 100644 --- a/src/App.js +++ b/src/App.js @@ -55,25 +55,25 @@ function App() { loading: () => loading, }); - const AdmissionFeeStructure = Loadable({ - loader: () => import("./pages/admissionfeestructure/index"), - loading: () => loading, - }); + // const AdmissionFeeStructure = Loadable({ + // loader: () => import("./pages/admissionfeestructure/index"), + // loading: () => loading, + // }); - const AdmissionForms = Loadable({ - loader: () => import("./pages/admissionforms/index"), - loading: () => loading, - }); + // const AdmissionForms = Loadable({ + // loader: () => import("./pages/admissionforms/index"), + // loading: () => loading, + // }); const AntiRagging = Loadable({ loader: () => import("./pages/antiragging/index.js"), loading: () => loading, }); - const AdmissionContact = Loadable({ - loader: () => import("./pages/admissioncontact/index"), - loading: () => loading, - }); + // const AdmissionContact = Loadable({ + // loader: () => import("./pages/admissioncontact/index"), + // loading: () => loading, + // }); const Notices = Loadable({ loader: () => import("./pages/notices/index"), @@ -271,6 +271,21 @@ function App() { loading: () => loading, }); + const Admission_ug = Loadable({ + loader: () => import("./pages/Admission_ug/index"), + loading: () => loading, + }); + + const Admission_pg = Loadable({ + loader: () => import("./pages/Admission_pg/index"), + loading: () => loading, + }); + + const Admission_program = Loadable({ + loader: () => import("./pages/Admission_program/index"), + loading: () => loading, + }); + return ( - - + {/* + /> */} - + {/* */} + + + - + {/* */} diff --git a/src/components/person_card/index.js b/src/components/person_card/index.js index da608d4..a70183b 100644 --- a/src/components/person_card/index.js +++ b/src/components/person_card/index.js @@ -3,6 +3,7 @@ import { Typography } from "@material-ui/core"; import { makeStyles } from "@material-ui/core/styles"; import Icon from '@material-ui/core/Icon'; import MailIcon from '@material-ui/icons/Mail'; +import LocalPhoneIcon from '@material-ui/icons/LocalPhone'; import { BrowserRouter as Router, Route, @@ -71,6 +72,16 @@ const PersonCard = (props) => { {props.emailID} + { + props.mobile?( + + ):null + } diff --git a/src/images/people/faculty/adm_ece_1.jpg b/src/images/people/faculty/adm_ece_1.jpg new file mode 100644 index 0000000..b5ce959 Binary files /dev/null and b/src/images/people/faculty/adm_ece_1.jpg differ diff --git a/src/images/people/staff/staff_1n.jpg b/src/images/people/staff/staff_1n.jpg new file mode 100644 index 0000000..be72022 Binary files /dev/null and b/src/images/people/staff/staff_1n.jpg differ diff --git a/src/images/people/staff/staff_2n.jpg b/src/images/people/staff/staff_2n.jpg new file mode 100644 index 0000000..d585eb3 Binary files /dev/null and b/src/images/people/staff/staff_2n.jpg differ diff --git a/src/images/people/staff/staff_3n.jpg b/src/images/people/staff/staff_3n.jpg new file mode 100644 index 0000000..e2699b7 Binary files /dev/null and b/src/images/people/staff/staff_3n.jpg differ diff --git a/src/images/people/staff/staff_4n.jpg b/src/images/people/staff/staff_4n.jpg new file mode 100644 index 0000000..dab6306 Binary files /dev/null and b/src/images/people/staff/staff_4n.jpg differ diff --git a/src/images/people/staff/staff_5.jpg b/src/images/people/staff/staff_5.jpg new file mode 100644 index 0000000..03c6c92 Binary files /dev/null and b/src/images/people/staff/staff_5.jpg differ diff --git a/src/json/navbar_data.json b/src/json/navbar_data.json index 91a2b04..eb3d1f6 100644 --- a/src/json/navbar_data.json +++ b/src/json/navbar_data.json @@ -91,24 +91,12 @@ "icon": "note_add", "submenu": [ { - "text": "Admission Procedure", - "link": "/admission_procedure" - }, - { - "text": "Fee Structure", - "link": "/admission_fee_structure" - }, - { - "text": "Admission Forms", - "link": "/admission_forms" + "text": "Admission", + "link": "/admission" }, { "text": "Anti Ragging Committee", "link": "/anti_ragging_committee" - }, - { - "text": "Contact", - "link": "/admission_contact" } ] }, diff --git a/src/json/staff.json b/src/json/staff.json index 5addcf9..4cdb9e5 100644 --- a/src/json/staff.json +++ b/src/json/staff.json @@ -1,21 +1,33 @@ { "data": [ { - "name": "Mr. S. Selvarasu", - "designation": "Consultant-Accountant", - "emailID": "ssrrag@gmail.com", - "src": "staff_1.jpg" + "name": "Mr. M. Balamurugan", + "designation": "Site Engineer", + "emailID": "--", + "src": "staff_1n.jpg" }, { - "name": "Ms. P. Leema", - "designation": "Office-Assistant", - "emailID": "leemsiiitt@gmail.com", - "src": "staff_2.jpg" + "name": "Mrs. M. Saraswathy", + "designation": "Administrative Assistant", + "emailID": "--", + "src": "staff_2n.jpg" }, { - "name": "Mr. S. Selvarasu", + "name": "Mr. R. Kannan", + "designation": "Administrative Assistant", + "emailID": "--", + "src": "staff_3n.jpg" + }, + { + "name": "Mr. S. Christu Raj", + "designation": "Administrative Assistant", + "emailID": "--", + "src": "staff_4n.jpg" + }, + { + "name": "Mr. V. Logeswaran", "designation": "Multi-tasking Staff", - "emailID": " ", + "emailID": "--", "src": "staff_4.jpg" } ] diff --git a/src/pages/Admission_pg/index.js b/src/pages/Admission_pg/index.js new file mode 100644 index 0000000..35dcf5c --- /dev/null +++ b/src/pages/Admission_pg/index.js @@ -0,0 +1,85 @@ +import React from "react"; +import '../Admission_ug/index.css'; +import Navbar from "../../components/navbar/index"; +import Footer from "../../components/footer"; +import { + Typography, + Grid, + Box, +} from "@material-ui/core"; +import { makeStyles } from "@material-ui/core/styles"; + +const Admission_pg = () => { + const createStyles = makeStyles({ + themeText: { + color: "#2e8b57", + fontSize: 40, + fontWeight: "500", + }, + container: { + padding: "1rem 1rem", + }, + link: { + textDecoration: "none", + display: "block", + paddingTop: "1rem", + fontWeight: "500", + width: "auto", + color: "#2e8b57", + "&:hover": { + textDecoration: "underline", + color: "blueviolet", + }, + }, + }); + const classes = createStyles(); + + return ( + + ); +}; + +export default Admission_pg; diff --git a/src/pages/Admission_program/index.js b/src/pages/Admission_program/index.js new file mode 100644 index 0000000..f41f36f --- /dev/null +++ b/src/pages/Admission_program/index.js @@ -0,0 +1,164 @@ +import React from "react"; +import Navbar from "../../components/navbar/index"; +import "../Admission_ug/index.css"; +import Footer from "../../components/footer"; +import { + Typography, + Grid, + Box, +} from "@material-ui/core"; +import { makeStyles } from "@material-ui/core/styles"; + +const Admission_program = () => { + const createStyles = makeStyles({ + themeText: { + color: "#2e8b57", + fontSize: 40, + fontWeight: "500", + }, + container: { + padding: "1rem 1rem", + }, + link: { + textDecoration: "none", + display: "block", + paddingTop: "1rem", + fontWeight: "500", + width: "auto", + color: "#2e8b57", + "&:hover": { + textDecoration: "underline", + color: "blueviolet", + }, + }, + }); + const classes = createStyles(); + + return ( +
+ + + + + + Programs + +

Undergraduate Program

+

+ The admission to Undergraduate Programs is done through JEE Mains. + The JEE-Mains qualified candidates are admitted to UG program + through Centralized Seat Allocation Board (CSAB) and Joint Seat + Allocation Authority (JoSAA) following the reservation policy of + Government of India. +

+
+

+ IIIT Tiruchirappalli offers the following two + Undergraduate Programs :{" "} +

+
    +
  • +

    + Computer Science and Engineering (4 years, Bachelor of + Technology) +

    +
  • +
  • +

    + Electronics and Communication Engineering (4 years, Bachelor + of Technology) +

    +
  • +
+
+
+

Postgraduate Program

+
+

+ IIIT Tiruchirappalli offers the following two{" "} + Postgraduate Programs:{" "} +

+
    +
  • +

    + Computer Science and Engineering (2 years, Masters of + Technology) +

    +
  • +
  • +

    VLSI Systems (2 years, Masters of Technology)

    +
  • +
+
+
+

Doctoral Program

+
+

+ IIIT Tiruchirappalli offers Ph.D programsin the + following Departments.{" "} +

+
    +
  • +

    Computer Science and Engineering

    +

    + Data Analytics, Machine Learning, Deep Learning, IoT, Cloud + Computing, Medical Image Processing and allied areas +

    +
  • +
  • +

    Electronics and Communication Engineering

    +

    + VLSI Design, Wireless Communication, Micro & Nano + Electronics, Compact Modeling & Simulation and allied + areas +

    +
  • +
  • +

    Mechanical Engineering

    +

    + Additive Manufacturing, Powder Metallurgy, Smart Materials, + Energy storage materials +

    +
  • +
  • +

    Science and Humanities

    +
      +
    • +

      Physics

      +

      + Optoelectronic Materials & Devices, Fiber optics, + Plasmonics, Semiconductor heterostructures +

      +
    • +
    • +

      Mathematics

      +

      Fluid Dynamics

      +
    • +
    • +

      Economics

      +

      + Health Economics, Health Technology Assessment, Global + issues in health and development +

      +
    • +
    • +

      English

      +

      Applied Linguistics, Indian Writing in English

      +
    • +
    +
  • +
+
+
+
+
+
+ ); +}; + +export default Admission_program; diff --git a/src/pages/Admission_ug/index.css b/src/pages/Admission_ug/index.css new file mode 100644 index 0000000..88ef799 --- /dev/null +++ b/src/pages/Admission_ug/index.css @@ -0,0 +1,35 @@ +.utility-hr{ + border: none; + border-top: 10px dotted #DDDDDD; + width: 50px; + margin: 30px auto; +} + +.utility_margin-1{ + margin: 50px 0; +} + +.utility_link{ + font-size: 20px; + margin: 20px 0; +} + +.utility-mrgin_2{ + margin: 10px 0; +} + +.utility_margin-h4{ + margin-top: 40px; +} + +.utility-bullet{ + margin-left: 20px; +} + +.utility-hr-2{ + margin: 20px auto; +} + +.utility-bottom > *{ + margin-bottom: 10px; +} \ No newline at end of file diff --git a/src/pages/Admission_ug/index.js b/src/pages/Admission_ug/index.js new file mode 100644 index 0000000..ec29251 --- /dev/null +++ b/src/pages/Admission_ug/index.js @@ -0,0 +1,372 @@ +import React from "react"; +import './index.css'; +import Navbar from "../../components/navbar/index"; +import Footer from "../../components/footer"; +import {Typography, + Grid, + Box, + Table, + TableBody, + TableCell, + TableHead, + TableContainer, + TableRow, + Paper,} from "@material-ui/core"; +import { makeStyles } from "@material-ui/core/styles"; + +const Admission_ug = () => { + const createStyles = makeStyles({ + themeText: { + color: "#2e8b57", + fontSize: 28, + fontWeight: "500", + }, + container: { + padding: "1rem 1rem", + }, + link: { + textDecoration: "none", + display: "block", + paddingTop: "1rem", + fontWeight: "500", + width: "auto", + color: "#2e8b57", + "&:hover": { + textDecoration: "underline", + color: "blueviolet", + }, + }, + }); + const classes = createStyles(); + return ( +
+ + + + + + + B.Tech Admission - Online Admission Process 2021 + + +

+ There is no need to Report to the Institute in Person for Online + Admission +

+ + Click here for Online Reporting Details + + + JoSAA_Important Instructions for candidates from JoSAA 6th round + onwards + +

+ Candidates who have secured their seat by paying partial admission + fee during JoSAA Rounds are required to do online reporting to the + allotted institute from{" "} + + 7th December 2021 (Tuesday) (10:00 hrs) to 13th December 2021 + (17:00 hrs) + +

+ + Schedule of CSAB-2021 Special Rounds + + +
+

For details / Business rules and schedule, (CSAB), visit:

+ +
+
+

List of Undergraduate Programs

+
+

IIIT Tiruchirappalli offers the following two Undergraduate Programs :

+
    +
  • +

    Computer Science and Engineering (4 years, Bachelor of Technology)

    +
  • +
  • +

    Electronics and Communication Engineering (4 years, Bachelor of Technology)

    +
  • +
+
+
+

Fee Structure

+ +
+ + +

Curriculum and Syllabus

+
+
+

Forms

+ +
+

Opening and Closing Rank

+ +
+

Anti Ragging Committee

+ + Anti-Ragging Committee + +
+
+

The admission to Undergraduate Programs is done through JEE Mains. The JEE-Mains qualified candidates are admitted to UG program through Centralized Seat Allocation Board (CSAB) and Joint Seat Allocation Authority (JoSAA) following the reservation policy of Government of India.

+
+ + + JEE Main 2020 + + +
+ + + + The Ministry of Human Resource Development, Government of India has notified following two changes in the JEE pattern for 2020: + + + +
    +
  1. + The Ministry of Education [erstwhile Ministry of Human Resources Development (MHRD)], Government of India (GOI) has established National Testing Agency (NTA) as an independent autonomous and self-sustained premier testing organization under Society Registration Act 1860 for conducting efficient, transparent and international standards tests in order to assess the competency of candidates for admissions to premier higher education institutions. +
  2. +
    +
  3. + The Department of Higher Education, Ministry of Human Resource Development, Government of India has entrusted the responsibility of conducting Joint Entrance Examination JEE (Main) to the NTA from 2019 onwards. +
  4. +
    +
  5. + Admission criteria to Undergraduate Engineering Programs at NITs, IIITs, other Centrally Funded Technical Institutions (CFTI), Institutions funded by participating State Governments, and other Institutions shall include the performance in the class 12/equivalent qualifying Examination and in the Joint Entrance Examination, JEE (Main). The (B. E. /B. Tech.) of JEE (Main) will also be an eligibility test for the JEE (Advanced), which the candidate has to take if he/she is aspiring for admission to the undergraduate programs offered by the Indian Institute of Technology (IITs). +
  6. +
+ + Visit website of JEE Main + +
+
+
+
+ + + JoSAA 2019 + + +
+ + + + The Joint Seat Allocation Authority (JoSAA) 2020 has been set up by the Ministry of Education [erstwhile Ministry of Human Resources Development (MHRD)] to manage and regulate the joint seat allocation for admissions to 110 institutes for the academic year 2020-21. This includes 23 IITs, 31 NITs, IIEST Shibpur, 26 IIITs and 29 Other-Government Funded Technical Institutes (Other-GFTIs). Admission to all the academic programs offered by these Institutes will be made through a single platform. + + +
+ + + + + + Qualifying Examination + + + Admitting Institutes + + + + + + + JEE (Advanced) 2020 + + + IITs + + + + + JEE (Main) 2020 B.E./B.Tech. + + + NITs, IIEST, IIITs (Triple-I-Ts) and Other-GFTIs + + + + + JEE (Main) 2020 B.Arch. + + + + + JEE (Main) 2020 B.Planning + + + +
+
+ + + Visit website of JoSAA + + + View IIIT Trichy on JoSAA + +
+
+
+
+ + + Central Seat Allocation Board (CSAB) + + + +
    +
  1. + The Ministry of Human Resource Development, Government of India took a policy decision in 2002 to conduct an All India Engineering Entrance Examination (AIEEE) annually, doing away with many of the large number of entrance examinations that were being conducted till then by various institutes in the country for admission to undergraduate degree programmes in the disciplines of Engineering/Technology and Architecture/Planning. This initiative has been widely accepted and appreciated.
  2. +
  3. + A Central Counselling Board (CCB) constituted by the Govt. of India coordinated admissions to UG degree programmes in Engineering, Technology and Architecture in respect of selected institutes till 2012. From 2013 onwards, CCB and AIEEE have been renamed as Central Seat Allocation Board (CSAB) and JEE (Main) respectively.
  4. +
+
+

For Further Details, Please visit:

+ + https://csab.nic.in/ + +
+
+
+
+
+
+
+ ); +}; + +export default Admission_ug; diff --git a/src/pages/admissionprocedure/index.js b/src/pages/admissionprocedure/index.js index a5de41d..2888277 100644 --- a/src/pages/admissionprocedure/index.js +++ b/src/pages/admissionprocedure/index.js @@ -1,7 +1,19 @@ import React, { useEffect } from "react"; import Navbar from "../../components/navbar/index"; import Footer from "../../components/footer/index"; -import { Typography, Grid, Box, Table, TableBody, TableCell, TableHead, TableContainer, TableRow, Paper } from "@material-ui/core"; +import PersonCard from "../../components/person_card"; +import { + Typography, + Grid, + Box, + Table, + TableBody, + TableCell, + TableHead, + TableContainer, + TableRow, + Paper, +} from "@material-ui/core"; import { makeStyles } from "@material-ui/core/styles"; import "./style.css"; @@ -39,6 +51,9 @@ const createStyles = makeStyles({ td: { fontSize: "1.3rem", }, + utilityMargin: { + marginLeft:"20px" + } }); export default function AdmissionProcedure() { @@ -70,203 +85,122 @@ export default function AdmissionProcedure() { - Admission to Undergraduate Programs for the candidates from India at - IIIT Tiruchirappalli is based on the ranks in the Joint Entrance - Examination, JEE (Main). Admission to IIIT Trichy for JEE Main - qualified candidates is made through a single platform through - online by the Joint Seat Allocation Authority (JoSAA). + Admission to the various courses offered by this institution are + specific to the programme and details can be found under each + specific programme. +

- JEE Main 2020 + Other Links - - - - The Ministry of Human Resource Development, Government of - India has notified following two changes in the JEE pattern - for 2020: - - -
    -
  1. - The Ministry of Education [erstwhile Ministry of Human - Resources Development (MHRD)], Government of India (GOI) has - established National Testing Agency (NTA) as an independent - autonomous and self-sustained premier testing organization - under Society Registration Act 1860 for conducting efficient, - transparent and international standards tests in order to - assess the competency of candidates for admissions to premier - higher education institutions. -
  2. -
  3. - The Department of Higher Education, Ministry of Human Resource - Development, Government of India has entrusted the - responsibility of conducting Joint Entrance Examination JEE - (Main) to the NTA from 2019 onwards. -
  4. -
  5. - Admission criteria to Undergraduate Engineering Programs at - NITs, IIITs, other Centrally Funded Technical Institutions - (CFTI), Institutions funded by participating State - Governments, and other Institutions shall include the - performance in the class 12/equivalent qualifying Examination - and in the Joint Entrance Examination, JEE (Main). The (B. E. - /B. Tech.) of JEE (Main) will also be an eligibility test for - the JEE (Advanced), which the candidate has to take if he/she - is aspiring for admission to the undergraduate programs - offered by the Indian Institute of Technology (IITs). -
  6. -
-
+
-
-
-
- - - JoSAA 2020 - - - - - - The Joint Seat Allocation Authority (JoSAA) 2020 has been set - up by the Ministry of Education [erstwhile Ministry of Human - Resources Development (MHRD)] to manage and regulate the joint - seat allocation for admissions to 110 institutes for the - academic year 2020-21. This includes 23 IITs, 31 NITs, IIEST - Shibpur, 26 IIITs and 29 Other-Government Funded Technical - Institutes (Other-GFTIs). Admission to all the academic - programs offered by these Institutes will be made through a - single platform. - - - - - - - - - Qualifying Examination - - - Admitting Institutes - - - - - - - JEE (Advanced) 2020 - - - IITs - - - - - JEE (Main) 2020 B.E./B.Tech. - - - NITs, IIEST, IIITs (Triple-I-Ts) and Other-GFTIs - - - - - JEE (Main) 2020 B.Arch. - - - - - JEE (Main) 2020 B.Planning - - - -
-
- -
+ +
  • - Visit website of JoSAA + Ministry of Social Justice and Empowerment (http://socialjustice.nic.in/) -
  • -
    + +
  • - View IIIT Trichy on JoSAA + Ministry of Tribal Affairs, Government of India (https://tribal.nic.in/) -
  • -
    + +
  • + + Department of Empowerment of Persons with Disabilities (http://disabilityaffairs.gov.in/) + +
  • + +
    +
    + + + Admissions Committee + + +
      +
    1. + Dr. G.Seetharaman, Chairman, PI/ Associate Professor, Department of ECE +
    2. +
    3. + Dr. N. Renugadevi, Verification officer, Co-PI/ Assistant Professor, Department of CSE +
    4. +
    - -
    - - - List of Undergraduate Programs 2020 - - - - - - IIIT Trichy offers the following two Undergraduate - Programs: - - -
      -
    • - Computer Science and Engineering (4 years, Bachelor of - Technology) -
    • -
    • - Electronics and Communication Engineering (4 years, - Bachelor of Technology) -
    • -
    -
    -
    -
    - +
    - Opening and Closing Rank + Contact Details of Admission Incharge - +

    For Admission related queries, contact Chairman Admissions, IIIT Tiruchirappalli.

    +
    diff --git a/src/pages/staff/index.js b/src/pages/staff/index.js index c99262d..cac0797 100644 --- a/src/pages/staff/index.js +++ b/src/pages/staff/index.js @@ -33,6 +33,22 @@ export default function Staff() { + + + Deputy Registrar + + + + + Office staff diff --git a/src/pages/webDevClub/components/Projects/projectsData.js b/src/pages/webDevClub/components/Projects/projectsData.js index 558c229..355de30 100644 --- a/src/pages/webDevClub/components/Projects/projectsData.js +++ b/src/pages/webDevClub/components/Projects/projectsData.js @@ -6,7 +6,7 @@ export const ProjectData = [ status:"completed", description:"The old website of IIIT Tiruchirappalli", tech:"HTML, CSS, Bootstrap, Express(NodeJS)", - contributors:"fahad israr, mayank sonkar" + contributors:"Fahad israr, Mayank sonkar" }, { key:"2", @@ -15,7 +15,7 @@ export const ProjectData = [ status:"completed", description:"The revamped website of IIIT Tiruchirappalli was built as a mobile-first, modern web app, we considered several things while building the site like, A better UI : With different views for mobile and desktop and features like Quick Links on Mobile Nav, Custom CMS : We've developed it in such a way that to update website content you need not modify the code. Now even the layman can update info, Open Source : Our code is free to use and any other educational institute can also use what we've developed, CI/CD : We've set up CI/CD with GitHub Actions with Triggers on both Push and Pull Request.", tech:"HTML5, CSS3, ReactJS(JS)", - contributors:"Fahad Israr, Dinesh Vikram V, Nitish Kumar, mayank sonkar" + contributors:"Fahad Israr, Dinesh Vikram V, Nitish Kumar, Mayank sonkar" }, { key:"3", @@ -41,7 +41,7 @@ export const ProjectData = [ status:"completed", description:"The web app used by applicants for the PhD program at IIIT Tiruchirappalli", tech:"HTML5, CSS3, Javascript, Django(Python), MariaDB", - contributors:"Dinesh Vikram V" + contributors:"Dinesh Vikram V, Nitish kumar" },{ key:"6", name:"Convocation Web App's",