File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed
Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change 11import type { ReactNode } from 'react' ;
22import { HomeLayout } from 'fumadocs-ui/layouts/home' ;
33import { baseOptions } from '@/app/layout.config' ;
4- import Link from 'next/link' ;
5- import { BsDiscord } from 'react-icons/bs' ;
64import 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
106export 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 > ;
You can’t perform that action at this time.
0 commit comments