Skip to content

Commit

Permalink
📝 layout inicial
Browse files Browse the repository at this point in the history
  • Loading branch information
joseandre25 committed Oct 24, 2023
1 parent f17d0ba commit 5d48a4e
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,16 @@ import MainLayout from '../layouts/MainLayout';

export default function Home() {
return (
<MainLayout>
<Footer />
</MainLayout>
<div className="flex-col">
<div className="bg-gray-900 h-16 w-screen">
{/* Conteúdo da Barra Superior */}
</div>
<div className="bg-teal-500 w-16 h-screen">
{/* Conteúdo da Barra à Esquerda */}
</div>
<div className="flex-1">
<Footer />
</div>
</div>
);
}

0 comments on commit 5d48a4e

Please sign in to comment.