Skip to content

Commit

Permalink
Temp remove navbar stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Rikthepixel committed Feb 23, 2023
1 parent 7d081cf commit db362af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions layouts/Main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ const MainLayout = ({ children }: MainLayoutProps) => {
<div ref={containerRef} className="flex flex-col items-center h-full">
<nav
ref={navbarRef}
className="grid grid-cols-2 place-items-center w-full sm:w-auto text-white gap-2 py-4 px-6 top-0 z-10 sm:grid-cols-none sm:grid-flow-col"
className="top-0 z-10 grid w-full grid-cols-2 gap-2 px-6 py-4 text-white place-items-center sm:w-auto sm:grid-cols-none sm:grid-flow-col"
>
<PageLink to="/">Home</PageLink>
<PageLink to="/about">About</PageLink>
<PageLink to="/projects">Projects</PageLink>
<PageLink to="/blog" >Blog</PageLink>
{/* <PageLink to="/projects">Projects</PageLink>
<PageLink to="/blog" >Blog</PageLink> */}
</nav>
{children}
</div>
Expand Down

0 comments on commit db362af

Please sign in to comment.