Skip to content

Commit 894c28e

Browse files
committed
Fix indentation in ExploreLayout component
1 parent 41ebf59 commit 894c28e

1 file changed

Lines changed: 8 additions & 10 deletions

File tree

app/(Main)/explore/layout.tsx

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { SiteFooter } from "@/components/footer"
33
import { Metadata } from "next"
44

55
export const metadata: Metadata = {
6-
title: 'Explore - FalseNotes',
6+
title: 'Explore - FalseNotes',
77
}
88

99
export default function ExploreLayout({
@@ -12,14 +12,12 @@ export default function ExploreLayout({
1212
children: React.ReactNode
1313
}) {
1414
return (
15-
<>
16-
<div className="md:container mx-auto px-4 pt-5">
17-
<main className="flex flex-col items-center justify-between">
18-
{children}
19-
</main>
20-
21-
</div>
22-
<SiteFooter className="px-3.5" />
23-
</>
15+
<>
16+
<div className="md:container mx-auto px-4 pt-5">
17+
<main className="flex flex-col items-center justify-between">
18+
{children}
19+
</main>
20+
</div>
21+
</>
2422
)
2523
}

0 commit comments

Comments
 (0)