Skip to content

Commit

Permalink
Fixed home page details to reflect current changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Orqoi committed Jul 25, 2022
1 parent 702e80d commit 3f1b364
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 10 deletions.
36 changes: 35 additions & 1 deletion frontend/src/assets/Home.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
margin: 1.5rem 0;
font-size: 1.5rem;
text-align: start;
list-style-type: decimal;
list-style-type: disc;
}

.home-paragraph-container ul {
Expand Down Expand Up @@ -60,6 +60,31 @@
height: 5rem;
}

.features-top-container {
display: flex;
flex-direction: row;
}

.feature {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
}


.feature > h2 {
font-size: 1.75rem;
text-decoration: underline;
margin: 0;
}

.feature > ul {
width: fit-content;
margin-top: 0.5rem;

}

@media only screen and (max-width: 1200px) {

.home-container {
Expand Down Expand Up @@ -113,4 +138,13 @@
height: 12rem;
width: 20rem;
}

.features-top-container {
flex-direction: column;
}

.feature > ul {
align-self: flex-start;
margin-left: 3.5rem;
}
}
35 changes: 26 additions & 9 deletions frontend/src/containers/Home/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function Home() {
candidature of 4 to 5 years, targeted at pre-matriculating and newly matriculated students who are generally
less informed about the academic university structure.
</p>
<iframe src="https://www.youtube.com/embed/EQLFT9GRzEQ" title="YouTube video player"
<iframe src="https://www.youtube.com/embed/i-KE7jY49R4" title="YouTube video player"
frameBorder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen>
</iframe>
</div>
Expand All @@ -37,14 +37,31 @@ function Home() {
</div>
<div className='home-paragraph-container'>
<h1>Features</h1>
<ul>
<li>Drag and Drop UI Academic Planner</li>
<li>Personalization to Own Course and Specialization</li>
<li>Ease of Download and Modifications</li>
<li>Pre-requisite Checks</li>
<li>Graduation Requirement Checks</li>
<li>User Forum For Advice</li>
</ul>
<div className='features-top-container'>
<div className='feature'>
<h2>Core Features</h2>
<ul>
<li>Academic Plan Creator</li>
<li>Drag and Drop UI</li>
<li>Automatic Prerequisite/Preclusion Checks</li>
<li>Course Requirements Summaries</li>
<li>Graduation Fulfilment Checker</li>
<li>User Help Forum</li>
</ul>
</div>
<div className='feature'>
<h2>Extensions</h2>
<ul>
<li>Dark Mode Display</li>
<li>Moderator Privileges</li>
<li>Profile Page</li>
<li>Academic Plan Download</li>
<li>Graduation Requirement Checks</li>
</ul>
</div>

</div>

</div>
<div className='home-paragraph-container'>
<h1>Technologies Used</h1>
Expand Down

0 comments on commit 3f1b364

Please sign in to comment.