diff --git a/docusaurus.config.ts b/docusaurus.config.ts index d30e368ae8..3953247c5d 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -200,7 +200,7 @@ const config: Config = { copyright: `Copyright © ${new Date().getFullYear()} RavenDB`, }, prism: { - theme: prismThemes.github, + theme: prismThemes.nightOwlLight, darkTheme: prismThemes.dracula, additionalLanguages: ["csharp", "java", "php"], }, diff --git a/src/components/ContentFrame.tsx b/src/components/ContentFrame.tsx new file mode 100644 index 0000000000..3a085203cc --- /dev/null +++ b/src/components/ContentFrame.tsx @@ -0,0 +1,20 @@ +import clsx from "clsx"; +import React from "react"; + +export type ContentFrameProps = { + children: React.ReactNode; + className?: string; + flush?: boolean; +}; + +export function ContentFrame(props: ContentFrameProps) { + const { children, className, flush } = props; + + return ( +
+
+
+
+