Skip to content

Commit

Permalink
Styled the publications sections with tailwind classes.
Browse files Browse the repository at this point in the history
  • Loading branch information
luca-casadei committed Oct 22, 2023
1 parent 1bc1874 commit a508415
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 6 deletions.
1 change: 1 addition & 0 deletions public/doc.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 21 additions & 6 deletions src/components/HomePage/Publications.tsx
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>
);
}
2 changes: 2 additions & 0 deletions src/routes/Home.tsx
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>
);
}

0 comments on commit a508415

Please sign in to comment.