Skip to content

Commit 597036d

Browse files
committed
fix: trying to fix docker image, docker is not working on my machine
1 parent 3fb5bfc commit 597036d

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

app/(home)/layout.tsx

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,17 @@
11
import type { ReactNode } from 'react';
22
import { HomeLayout } from 'fumadocs-ui/layouts/home';
33
import { baseOptions } from '@/app/layout.config';
4-
import Link from 'next/link';
5-
import { BsDiscord } from 'react-icons/bs';
64
import BasicFooter from '../components/layout/basic-footer';
7-
import { Navbar } from 'fumadocs-ui/layouts/home/navbar';
8-
import { SearchDialog } from 'fumadocs-ui/components/dialog/search';
95

106
export default function Layout({ children }: { children: ReactNode }) {
117
return <div>
128
<HomeLayout
139
{...baseOptions}
1410
themeSwitch={{enabled: false}}
15-
>
16-
<div className='min-h-screen inline'>
17-
{children}
18-
</div>
11+
>
12+
<div className='min-h-screen inline'>
13+
{children}
14+
</div>
1915
<BasicFooter />
2016
</HomeLayout>
2117
</div>;

0 commit comments

Comments
 (0)