-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Styled the publications sections with tailwind classes.
- Loading branch information
1 parent
1bc1874
commit a508415
Showing
3 changed files
with
24 additions
and
6 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,21 @@ | ||
export default function Publications(){ | ||
return( | ||
<> | ||
</> | ||
) | ||
} | ||
export default function Publications() { | ||
return ( | ||
<section id="publications" className="mt-20 text-white"> | ||
<div className="flex md:flex-row flex-col-reverse mx-5 md:mx-20"> | ||
<div className="flex flex-col items-center"> | ||
<h1 className="text-2xl text-center md:mt-0 mt-3"> | ||
Pubblicazioni e documenti | ||
</h1> | ||
<p className="mt-3 md:mr-10 md:text-justify text-center"> | ||
In questa sezione verranno caricati documenti da me realizzati | ||
durante la mia esperienza scolastica o progettuale che ritengo possa | ||
essere utile condividere pubblicamente, tutto il contenuto caricato | ||
qui non potrà essere utilizzato per nessun motivo a scopo | ||
commerciale e senza | ||
</p> | ||
</div> | ||
<img src="./doc.svg" alt="docImg" className="max-h-24 max-w-24" /> | ||
</div> | ||
</section> | ||
); | ||
} |
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,9 +1,11 @@ | ||
import PortfolioDescription from "../components/HomePage/PortfolioDescription"; | ||
import Publications from "../components/HomePage/Publications"; | ||
|
||
export default function Home() { | ||
return ( | ||
<section id="homePage" className="flex flex-col mt-20 items-center text-white"> | ||
<PortfolioDescription/> | ||
<Publications/> | ||
</section> | ||
); | ||
} |