Skip to content

Commit

Permalink
add footer section
Browse files Browse the repository at this point in the history
  • Loading branch information
mayank2021 committed Dec 30, 2021
1 parent a44edf8 commit 21936ee
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 14 deletions.
9 changes: 2 additions & 7 deletions src/pages/Admission_pg/index.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
import React from "react";
import '../Admission_ug/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";

Expand Down Expand Up @@ -83,6 +77,7 @@ const Admission_pg = () => {
</ul>
</Grid>
</Grid>
<Footer/>
</div>
);
};
Expand Down
9 changes: 2 additions & 7 deletions src/pages/Admission_program/index.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
import React from "react";
import Navbar from "../../components/navbar/index";
import "../Admission_ug/index.css";
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";

Expand Down Expand Up @@ -162,6 +156,7 @@ const Admission_program = () => {
</div>
</Grid>
</Grid>
<Footer/>
</div>
);
};
Expand Down
2 changes: 2 additions & 0 deletions src/pages/Admission_ug/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from "react";
import './index.css';
import Navbar from "../../components/navbar/index";
import Footer from "../../components/footer";
import {Typography,
Grid,
Box,
Expand Down Expand Up @@ -363,6 +364,7 @@ const Admission_ug = () => {
</section>
</Grid>
</Grid>
<Footer/>
</div>
);
};
Expand Down

0 comments on commit 21936ee

Please sign in to comment.