Skip to content

Commit

Permalink
Fix indentation in ExploreLayout component
Browse files Browse the repository at this point in the history
  • Loading branch information
thebkht committed Nov 27, 2023
1 parent 41ebf59 commit 894c28e
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions app/(Main)/explore/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { SiteFooter } from "@/components/footer"
import { Metadata } from "next"

export const metadata: Metadata = {
title: 'Explore - FalseNotes',
title: 'Explore - FalseNotes',
}

export default function ExploreLayout({
Expand All @@ -12,14 +12,12 @@ export default function ExploreLayout({
children: React.ReactNode
}) {
return (
<>
<div className="md:container mx-auto px-4 pt-5">
<main className="flex flex-col items-center justify-between">
{children}
</main>

</div>
<SiteFooter className="px-3.5" />
</>
<>
<div className="md:container mx-auto px-4 pt-5">
<main className="flex flex-col items-center justify-between">
{children}
</main>
</div>
</>
)
}

0 comments on commit 894c28e

Please sign in to comment.