Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/contributors.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ tuliren
melalj
mfa-g
rodriguescarson
dchaudhari7177
5 changes: 4 additions & 1 deletion apps/www/src/components/blog-post-layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,10 @@ function PostFaq({ items }: { items: BlogPostFaqItem[] }) {

export function BlogPostLayout({ data }: { data: BlogPostLoaderData }) {
return (
<RootProvider theme={{ defaultTheme: "light", forcedTheme: "light" }}>
<RootProvider
theme={{ defaultTheme: "light", forcedTheme: "light" }}
search={{ enabled: false }}
>
<div className="min-h-screen">
<Navbar />
<main className="mx-auto max-w-3xl px-4 py-12 md:px-6 lg:py-16">
Expand Down
5 changes: 4 additions & 1 deletion apps/www/src/components/docs-page-layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,10 @@ export function DocsPageLayout({ loaderData }: { loaderData: LoaderData }) {
const data = useFumadocsLoader(loaderData);

return (
<RootProvider theme={{ defaultTheme: "light", forcedTheme: "light" }}>
<RootProvider
theme={{ defaultTheme: "light", forcedTheme: "light" }}
search={{ enabled: false }}
>
<div className="min-h-screen">
<Navbar />
<div className="mx-auto max-w-6xl px-4 py-8 md:px-6 lg:px-8">
Expand Down