-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #135 from mayank2021/master
Update Programs and added web dev club page
- Loading branch information
Showing
17 changed files
with
847 additions
and
212 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,33 @@ | ||
{ | ||
"data": [ | ||
{ | ||
"name": "Mr. S. Selvarasu", | ||
"designation": "Consultant-Accountant", | ||
"emailID": "[email protected]", | ||
"src": "staff_1.jpg" | ||
"name": "Mr. M. Balamurugan", | ||
"designation": "Site Engineer", | ||
"emailID": "--", | ||
"src": "staff_1n.jpg" | ||
}, | ||
{ | ||
"name": "Ms. P. Leema", | ||
"designation": "Office-Assistant", | ||
"emailID": "[email protected]", | ||
"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" | ||
} | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 ( | ||
<div> | ||
<Navbar /> | ||
<Grid container className={classes.container}> | ||
<Grid item xs={false} sm={1} /> | ||
<Grid item xs={12} sm={10}> | ||
<Typography | ||
variant="h3" | ||
component="h3" | ||
gutterBottom | ||
className={classes.themeText} | ||
> | ||
<Box component="span">M.Tech Admission</Box> | ||
</Typography> | ||
|
||
<h2 className="utility_margin-h4">CCMT 2021</h2> | ||
<a | ||
className={`${classes.link}`} | ||
href="http://www.iiitt.ac.in/downloads/admission/BTechReporting_details_2021-22-updated71221.pdf" | ||
target="_blank" | ||
> | ||
Online PI Reporting for M.Tech. provisional admission through | ||
CCMT-2021 | ||
</a> | ||
<hr className="utility-hr utility-hr-2"/> | ||
<a className={`${classes.link}`} href="curriculum" target="_blank"> | ||
<h3>Curriculum and Syllabus</h3>{" "} | ||
</a> | ||
<hr className="utility-hr utility-hr-2"/> | ||
<h2>Fee Structure</h2> | ||
<ul className="utility-bullet"> | ||
<li> | ||
<a | ||
className={`${classes.link}`} | ||
href="http://www.iiitt.ac.in/downloads/admission/MTechFeeRefundStructure2021.pdf" | ||
target="_blank" | ||
> | ||
Fee Refund Structure 2021{" "} | ||
</a> | ||
</li> | ||
</ul> | ||
</Grid> | ||
</Grid> | ||
<Footer/> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Admission_pg; |
Oops, something went wrong.