diff --git a/docs/src/app/(home)/layout.tsx b/docs/src/app/(home)/layout.tsx index df6ebe8ea..b188771ce 100644 --- a/docs/src/app/(home)/layout.tsx +++ b/docs/src/app/(home)/layout.tsx @@ -1,18 +1,9 @@ -import { baseOptions } from '@/app/layout.config'; import Footer from '@/components/homepage/homepage-footer'; -import { HomeLayout } from 'fumadocs-ui/layouts/home'; - -// Enable search for home page navbar -const homeOptions = { - ...baseOptions, - searchToggle: { - enabled: true, - }, -}; +import { HomeLayout } from '@/components/layouts/home-layout'; export default function Layout({ children }: { children: React.ReactNode }) { return ( - + {children}