Browse Source

Migrate away from p tag

master
Dejvino 11 months ago
parent
commit
fd9150a2ff
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/app/components/Footer.tsx

+ 2
- 2
src/app/components/Footer.tsx View File

@@ -6,8 +6,8 @@ export default function Footer() {
const personalData = usePersonContext()
return (
<Container fluid className="footer text-center">
<p><small>Created by {personalData.name}, last updated on {personalData.updatedDate}</small></p>
<p><small className='tiny'>CV engineered by <a href={'https://www.dejvino.cz/'} target={'_blank'}>Dejvino</a></small></p>
<div><small>Created by {personalData.name}, last updated on {personalData.updatedDate}</small></div>
<div><small className='tiny'>CV engineered by <a href={'https://www.dejvino.cz/'} target={'_blank'}>Dejvino</a></small></div>
</Container>
)
}

Loading…
Cancel
Save