mirror of
https://github.com/better-auth/better-auth.git
synced 2026-08-26 11:43:08 -05:00
13 lines
381 B
TypeScript
13 lines
381 B
TypeScript
import type { ReactNode } from "react";
|
|
import { DocsLayout } from "@/components/docs/docs";
|
|
import { AISearchTrigger } from "@/components/floating-ai-search";
|
|
import { docsOptions } from "../layout.config";
|
|
export default function Layout({ children }: { children: ReactNode }) {
|
|
return (
|
|
<DocsLayout {...docsOptions}>
|
|
{children}
|
|
<AISearchTrigger />
|
|
</DocsLayout>
|
|
);
|
|
}
|