-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added footer to all pages and optimiz 4th year page
- Loading branch information
1 parent
0ae44d5
commit 68f546d
Showing
10 changed files
with
73 additions
and
46 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
.container-size{ | ||
height: 70vh; | ||
} | ||
.title{ | ||
display: flex; | ||
justify-content: center; | ||
|
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
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
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,57 +1,76 @@ | ||
import React from 'react' | ||
import {Link} from 'react-router-dom'; | ||
import '../page3/2Year.css' | ||
import Header from '../../pages/header'; | ||
import '../page3/1Year.css'; | ||
|
||
|
||
import quantumImage from '../../assets/5th.png'; | ||
import youtube from '../../assets/ytt.png' | ||
import timetable from '../../assets/sec-3A.jpg'; | ||
import syllabus from '../../assets/syllabuswt.jpg'; | ||
|
||
import ComingSoon from '../../pages/cs.js' | ||
|
||
|
||
function fothYear() { | ||
|
||
|
||
return ( | ||
<div> | ||
|
||
<Header/> | ||
|
||
import Footer from '../../pages/footer'; | ||
import quantumImage from '../../assets/icons8-book-64.png'; | ||
import timetable from '../../assets/icons8-timetable-64.png'; | ||
import syllabus from '../../assets/icons8-syllabus-80 (1).png'; | ||
import pyq from "../../assets/icons8-minus-1-year-80.png" | ||
import Notes from "../../assets/icons8-notes-80.png" | ||
import youtube from "../../assets/icons8-youtube-64.png"; | ||
function sndYear() { | ||
return ( | ||
<div> | ||
<Header/> | ||
<div className='background'> | ||
<div className="yr"> | ||
<h2>4th year</h2> | ||
<h1>4th Year</h1> | ||
</div> | ||
|
||
<div className="content"> | ||
<div className="cards"> | ||
|
||
<div class="content" style={{height:"auto"}}> | ||
<div class="cards"> | ||
<Link class="link" to="/notes"> | ||
<div class="card red"> | ||
<img src={quantumImage} alt="" /> | ||
{/* <p class="tip"></p> */} | ||
<p class="second-text">Quantum</p> | ||
|
||
</div> | ||
</Link> | ||
|
||
<Link class="link" to='/notes'> | ||
<div class="card blue"> | ||
<img src={youtube} alt="" /> | ||
<p class="second-text">Lecture</p> | ||
</div> | ||
</Link> | ||
|
||
<Link to='/frthsyllabus'> | ||
<div className="card pink"> | ||
<Link class="link" to='/frthsyllabus'> | ||
<div class="card pink"> | ||
<img src={syllabus} alt="" /> | ||
<p className="second-text">Syllabus</p> | ||
<p class="second-text">Syllabus</p> | ||
</div> | ||
</Link> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
</div> | ||
<Link class="link" to="/notes"> | ||
<div class="card syan"> | ||
<img src={timetable} alt="" /> | ||
<p class="second-text">Timetable</p> | ||
</div> | ||
</Link> | ||
|
||
<Link class="link" to='/notes'> | ||
<div class="card green"> | ||
<img src={pyq} alt=''/> | ||
<p class="second-text">PYQ</p> | ||
</div> | ||
</Link> | ||
|
||
) | ||
} | ||
|
||
|
||
|
||
<Link class="link" to='/notes'> | ||
<div class="card yellow"> | ||
<img src={Notes} alt=''/> | ||
|
||
<p class="second-text">Notes</p> | ||
</div> | ||
</Link> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
<Footer /> | ||
</div> | ||
) | ||
} | ||
|
||
export default fothYear; | ||
export default sndYear |
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,5 +1,6 @@ | ||
.ag-format-container { | ||
width: 1142px; | ||
height: 65vh; | ||
margin: 0 auto; | ||
} | ||
|
||
|
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