-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ New Page ] : Adds Publication page (#123)
* [ New Page ] : Adds Publication page * [ Minor Debugging ] : Adds dependencies for publications page * [ Minor Changes ] : Rename Faruk Kazi to Prof. Faruk Kazi * [ Minor Changes ] : Rename Shraddha Suratkar to Dr. Shraddha Suratkar
- Loading branch information
Showing
11 changed files
with
262 additions
and
4 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
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,74 @@ | ||
import styles from './Publications.module.scss'; | ||
import Hero from '../Hero/Hero'; | ||
import { PublicationsList } from '../../data'; | ||
|
||
const Publications = () => { | ||
return ( | ||
<> | ||
<Hero | ||
imgName={'publications-hero.jpg'} | ||
backgroundPosition={'center top'} | ||
title={<>Publications</>} | ||
subtitleList={[ | ||
'Research is looking in great depths, flying to new heights, Imagining the unimagined!', | ||
]} | ||
isHome={false} | ||
/> | ||
<div className={styles.publicationsList} id='is'> | ||
{PublicationsList.map((publicationSec, idx) => { | ||
return ( | ||
<> | ||
<div | ||
className={styles.publicationsSection} | ||
key={`publication_${idx}`} | ||
> | ||
<div className={styles.publicationsSectionTitle}> | ||
{publicationSec.name} | ||
</div> | ||
|
||
{publicationSec.publications.map((startup, idx) => { | ||
return ( | ||
<PublicationCard | ||
{...startup} | ||
key={`publication_card_${idx}`} | ||
/> | ||
); | ||
})} | ||
</div> | ||
</> | ||
); | ||
})} | ||
</div> | ||
</> | ||
); | ||
}; | ||
|
||
const PublicationCard = ({ | ||
title, | ||
photo, | ||
author, | ||
time, | ||
short, | ||
externalLink, | ||
}) => { | ||
return ( | ||
<div onClick={() => (window.location = externalLink)}> | ||
<div className={styles.publications}> | ||
<div | ||
className={styles.publicationsImage} | ||
style={{ backgroundImage: `url(${photo})` }} | ||
></div> | ||
<div className={styles.publicationsDetails}> | ||
<div className={styles.publicationsTitle}>{title}</div> | ||
<div className={styles.publicationsAuthor}>{author}</div> | ||
<div className={styles.publicationsTime}> | ||
<em>{time}</em> | ||
</div> | ||
<div className={styles.publicationsShort}>{short}</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Publications; |
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,135 @@ | ||
@import '../variables'; | ||
|
||
.publicationsSectionTitle { | ||
font-size: 2rem; | ||
text-align: center; | ||
width: 50%; | ||
margin: auto; | ||
margin-top: 30px; | ||
margin-bottom: 1em; | ||
padding-bottom: 0.5em; | ||
border-bottom: 2px solid $light; | ||
|
||
@media (max-width: 450px) { | ||
width: 80%; | ||
} | ||
} | ||
|
||
.publications { | ||
width: 80%; | ||
margin: 70px auto; | ||
min-height: 200px; | ||
display: flex; | ||
cursor: pointer; | ||
border: 2px solid $light; | ||
align-items: center; | ||
padding: 2em; | ||
border-radius: 10px; | ||
transition: transform 0.2s; | ||
&:hover { | ||
transform: scale(1.03); | ||
} | ||
.publicationsImage { | ||
width: 30%; | ||
height: 100%; | ||
min-height: 200px; | ||
background-size: contain; | ||
background-repeat: no-repeat; | ||
background-position: center center; | ||
} | ||
.publicationsDetails { | ||
width: 60%; | ||
margin-left: 50px; | ||
border-left: 1px solid $light; | ||
padding-left: 50px; | ||
|
||
.publicationsTitle { | ||
font-size: 2rem; | ||
} | ||
.publicationsAuthor { | ||
margin-top: 10px; | ||
font-size: 1rem; | ||
} | ||
.publicationsTime { | ||
text-align: right; | ||
} | ||
.publicationsShort { | ||
margin-top: 40px; | ||
} | ||
|
||
@media (max-width: 1300px) { | ||
.publicationsTitle { | ||
font-size: 1.5rem; | ||
} | ||
.publicationsAuthor { | ||
margin-top: 10px; | ||
font-size: 1rem; | ||
} | ||
.publicationsTime { | ||
margin-top: 10px; | ||
text-align: right; | ||
} | ||
.publicationsShort { | ||
margin-top: 40px; | ||
} | ||
} | ||
|
||
@media (max-width: 1000px) { | ||
.publicationsTitle { | ||
font-size: 1.3rem; | ||
} | ||
.publicationsAuthor { | ||
margin-top: 10px; | ||
font-size: 0.8rem; | ||
} | ||
.publicationsTime { | ||
font-size: 0.8rem; | ||
text-align: right; | ||
} | ||
.publicationsShort { | ||
font-size: 0.8rem; | ||
margin-top: 40px; | ||
} | ||
} | ||
|
||
@media (max-width: 700px) { | ||
.publicationsTitle { | ||
font-size: 1rem; | ||
} | ||
.publicationsAuthor { | ||
margin-top: 10px; | ||
font-size: 0.7rem; | ||
} | ||
.publicationsTime { | ||
font-size: 0.7rem; | ||
text-align: right; | ||
} | ||
.publicationsShort { | ||
font-size: 0.7rem; | ||
margin-top: 40px; | ||
} | ||
} | ||
} | ||
|
||
@media (max-width: 900px) { | ||
flex-direction: column; | ||
.publicationsImage { | ||
width: 80%; | ||
} | ||
.publicationsDetails { | ||
width: 80%; | ||
margin: 0; | ||
padding: 0; | ||
margin-top: 20px; | ||
padding-top: 20px; | ||
border: none; | ||
border-top: 1px solid $light; | ||
} | ||
} | ||
|
||
@media (max-width: 500px) { | ||
.publicationsDetails { | ||
width: 95%; | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
const PublicationsList = [ | ||
{ | ||
name: 'Research Papers', | ||
publications: [ | ||
{ | ||
photo: '/static/images/publications/2023_april_08.png', | ||
title: 'DEEPFAKE CLI: Accelerated Deepfake Detection using FPGAs', | ||
author: | ||
'Omkar Bhilare | Rahul Singh | Vedant Paranjape | Sravan Chittupalli | Dr. Shraddha Suratkar | Prof. Faruk Kazi', | ||
time: '08 April 2023', | ||
short: | ||
'Parallel and Distributed Computing, Applications and Technologies. PDCAT 2022', | ||
externalLink: 'https://doi.org/10.1007/978-3-031-29927-8_4', | ||
}, | ||
{ | ||
photo: '/static/images/publications/2017_september_27.png', | ||
title: | ||
'Swarm Robots in a Closed Loop Visual Odometry System by Using Visible Light Communication', | ||
author: | ||
'Dhiraj Patil | Kewal Shah | Udit Patadia | Nilay Sheth | Rahul Solank | Anshuman Singh', | ||
time: '27 September 2017', | ||
short: | ||
'Advances in Signal Processing and Intelligent Recognition Systems. SIRS 2017', | ||
externalLink: 'https://doi.org/10.1007/978-3-319-67934-1_18', | ||
}, | ||
], | ||
}, | ||
]; | ||
|
||
export default PublicationsList; |
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,15 @@ | ||
import Publications from '../components/Publications/Publications'; | ||
import Head from 'next/head'; | ||
|
||
const PublicationsPage = () => { | ||
return ( | ||
<> | ||
<Head> | ||
<title>Publications | SRA VJTI</title> | ||
</Head> | ||
<Publications /> | ||
</> | ||
); | ||
}; | ||
|
||
export default PublicationsPage; |
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.