Skip to content

Commit

Permalink
fix: update image asset paths and adjust layout in README and components
Browse files Browse the repository at this point in the history
  • Loading branch information
paulemacedo committed Jan 20, 2025
1 parent 0cc5753 commit 2f3fb38
Show file tree
Hide file tree
Showing 7 changed files with 130 additions and 33 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div align="center">
<a href="http://paulemacedo.vercel.app"><img src="/src/assets/logo.svg" alt="Portfolio Icon" width="100" height="100" /></a>
<a href="http://paulemacedo.vercel.app"><img src="src/assets/logo.svg" alt="Portfolio Icon" width="100" height="100" /></a>
<p>This is my personal portfolio, where I showcase my projects and skills.</p>
<div>
<img src="https://img.shields.io/badge/vite-%23432E54.svg?style=for-the-badge&logo=vite&logoColor=white" alt="Vite" />
Expand Down
70 changes: 62 additions & 8 deletions public/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 0 additions & 9 deletions src/assets/icon.svg

This file was deleted.

70 changes: 62 additions & 8 deletions src/assets/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const Footer = () => {
const { t } = useTranslation();

return (
<div className='max-w-[1300px] mx-auto flex justify-between p-6 md:p-20 text-sm md:text-lg mt-12'>
<div className='max-w-[1300px] mx-auto flex justify-between gap-8 p-6 md:p-20 text-sm md:text-lg mt-12'>
<div className='space-y-4'>
<h3 className='font-semibold text-gray-200 text-2xl'>{t('footer.name')}</h3>

Expand All @@ -15,7 +15,7 @@ const Footer = () => {
<a href='https://linkedin.com/in/paulemacedo' target='_blank' rel='noopener noreferrer'><FaLinkedin /></a>
</div>
</div>
<p className='text-gray-400 max-w-[200px] md:max-w-none'>
<p className='text-gray-400'>
{t('footer.rights')}
</p>
</div>
Expand Down
6 changes: 2 additions & 4 deletions src/components/Hero.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ const Hero = () => {
viewport={{ once: true }}
transition={{ duration: 1 }}
>

<TypeAnimation
sequence={animationTexts}
repeat={Infinity}
Expand Down Expand Up @@ -145,7 +146,7 @@ const Hero = () => {
className="w-[300px] md:w-[450px]"
/>
</div>

<motion.div
initial={{ opacity: 0}}
whileInView={{ opacity: 1 }}
Expand All @@ -161,9 +162,6 @@ const Hero = () => {
<DiHtml5 className="text-purple-400" />
<DiCss3 className="text-purple-400" />
<DiJavascript className="text-purple-400" />



</motion.div>

<div className="absolute inset-0 hidden md:block">
Expand Down
2 changes: 1 addition & 1 deletion src/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const Navbar = () => {
<div className='fixed top-0 left-0 w-full bg-opacity-70 backdrop-blur-md z-50'>
<div className='max-w-[1300px] mx-auto flex justify-between text-gray-200 text-xl items-center px-12 h-20'>
<a href='#'>
<img src={Logo} alt="logo" className='w-10 h-10' />
<img src={Logo} alt="logo" className='w-14 h-14' />
</a>
<ul className='hidden md:flex z-10 items-center gap-6 lg:gap-12'>
<li className='cursor-pointer'><Link to='education' smooth={true} offset={-80} duration={500}>{t('navbar.education')}</Link></li>
Expand Down

0 comments on commit 2f3fb38

Please sign in to comment.