Skip to content

Commit

Permalink
added version number
Browse files Browse the repository at this point in the history
  • Loading branch information
emanuelpps committed Mar 3, 2024
1 parent 0da603e commit bd1f83e
Showing 1 changed file with 27 additions and 25 deletions.
52 changes: 27 additions & 25 deletions components/footer/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,39 +72,41 @@ function Footer() {
</div>
</div>
<div className="flex flex-col md:flex-row w-auto md:col-span-2 justify-center items-center gap-4">
<p className="text-center mt-5 md:pr-10 text-sm">This site was built with:</p>
<p className="text-center mt-5 md:pr-10 text-sm">
This site was built with:
</p>
<div className="flex flex-row justify-center items-center text-center md:gap-4">
{frontendIcons
.filter((image) =>
["CSS 3", "Next.js", "Tailwind CSS", "Framer Motion"].includes(
image.name
{frontendIcons
.filter((image) =>
["CSS 3", "Next.js", "Tailwind CSS", "Framer Motion"].includes(
image.name
)
)
)
.map((image) => (
<div
className="flex flex-row justify-center items-center text-center align-middle w-20 gap-2"
key={image.id}
>
<Image
src={image.path}
alt={image.name}
width={30}
height={30}
/>
<h4 className="text-[0.6rem] text-center mt-2 font-extralight">
{image.name}
</h4>
</div>
))}

</div>
.map((image) => (
<div
className="flex flex-row justify-center items-center text-center align-middle w-20 gap-2"
key={image.id}
>
<Image
src={image.path}
alt={image.name}
width={30}
height={30}
/>
<h4 className="text-[0.6rem] text-center mt-2 font-extralight">
{image.name}
</h4>
</div>
))}
</div>
</div>
<div
id="footer-rights-container"
className="md:col-span-2 pt-10 w-auto items-end h-[auto] mb-0 md:mb-[-80px]"
>
<div className="w-full flex items-center justify-center text-center">
<div className="w-full flex flex-col items-center justify-center text-center">
<h3 className="text-sm md:text-base">© 2024 Emanuel Pagés.</h3>
<h4 className="text-[10px]">Version 1.0.0</h4>
</div>
</div>
</div>
Expand Down

0 comments on commit bd1f83e

Please sign in to comment.