Skip to content

Commit

Permalink
layout: fix index.js menu issue
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasdsalves committed May 2, 2023
1 parent cc993b8 commit e372608
Showing 1 changed file with 14 additions and 22 deletions.
36 changes: 14 additions & 22 deletions pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,28 +20,20 @@ export default function Home({ posts }) {
<>
<PageSEO title={siteMetadata.title} description={siteMetadata.description} />
<div>
<div
className="relative z-10 flex h-[calc(100vh-81px)] items-center md:h-[calc(115vh-116px)]"
transition={{ type: 'spring', stiffness: 50 }}
>
<div className="mx-auto w-screen max-w-3xl px-4 sm:px-9 xl:max-w-5xl xl:px-0">
<div className="-mt-36">
<div className="flex cursor-default flex-col space-y-2">
<h1 className="text-5xl font-semibold sm:text-7xl md:text-8xl xl:text-9xl">
Lucas dos Santos Alves
</h1>
<h2 className="text-3xl font-medium opacity-80 sm:text-6xl md:text-6xl xl:text-7xl">
Software developer
</h2>
<Link
href="/about"
className="text-md w-max cursor-pointer pt-5 sm:text-lg md:text-xl xl:text-2xl"
>
Read more about me &rarr;
</Link>
</div>
</div>
</div>
<div className="flex cursor-default flex-col space-y-2">
<h1 className="mt-20 text-5xl font-semibold sm:text-7xl md:text-8xl xl:text-9xl">
Lucas dos Santos Alves
</h1>
<h2 className="text-3xl font-medium opacity-80 sm:text-6xl md:text-6xl xl:text-7xl">
Software developer
</h2>
<Link
href="/about"
className="text-md w-max cursor-pointer pt-5 sm:text-lg md:text-xl xl:text-2xl"
>
{' '}
Read more about me &rarr;
</Link>
</div>
</div>
</>
Expand Down

0 comments on commit e372608

Please sign in to comment.