Skip to content

Commit 605bba4

Browse files
authored
Website overhaul (#16)
* Big overhaul of front page and vibe * Dark mode, article update
1 parent 5e49168 commit 605bba4

21 files changed

Lines changed: 585 additions & 31 deletions

File tree

app/(inner)/layout.tsx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { NullFooter } from '@/components/NullFooter'
2+
import SectionContainer from '@/components/SectionContainer'
3+
4+
export default function InnerLayout({ children }: { children: React.ReactNode }) {
5+
return (
6+
<SectionContainer>
7+
<div className="flex min-h-screen flex-col justify-between pt-14 font-sans">
8+
<main className="mb-auto">{children}</main>
9+
<NullFooter />
10+
</div>
11+
</SectionContainer>
12+
)
13+
}
File renamed without changes.

0 commit comments

Comments
 (0)