We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41ebf59 commit 894c28eCopy full SHA for 894c28e
1 file changed
app/(Main)/explore/layout.tsx
@@ -3,7 +3,7 @@ import { SiteFooter } from "@/components/footer"
3
import { Metadata } from "next"
4
5
export const metadata: Metadata = {
6
- title: 'Explore - FalseNotes',
+ title: 'Explore - FalseNotes',
7
}
8
9
export default function ExploreLayout({
@@ -12,14 +12,12 @@ export default function ExploreLayout({
12
children: React.ReactNode
13
}) {
14
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
- </>
+ <>
+ <div className="md:container mx-auto px-4 pt-5">
+ <main className="flex flex-col items-center justify-between">
+ {children}
+ </main>
+ </div>
+ </>
24
)
25
0 commit comments