Skip to content

Commit addf467

Browse files
committed
fix: remove footer and fix sponsor text on light mode
1 parent 67e17d6 commit addf467

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/app/layout.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Link from 'next/link';
22
import type { Metadata } from 'next';
3-
import { Footer, Layout, Navbar } from 'nextra-theme-docs';
3+
import { Layout, Navbar } from 'nextra-theme-docs';
44
import { getPageMap } from 'nextra/page-map';
55
import { Analytics } from "@vercel/analytics/next"
66
import 'nextra-theme-docs/style.css';
@@ -60,7 +60,6 @@ const navbar = (
6060
</Navbar>
6161
);
6262

63-
const footer = <Footer>Apache License 2.0 {new Date().getFullYear()} © OpenRPC.</Footer>;
6463

6564
export default async function RootLayout({
6665
children,
@@ -74,7 +73,6 @@ export default async function RootLayout({
7473
navbar={navbar}
7574
pageMap={await getPageMap()}
7675
docsRepositoryBase="https://github.com/open-rpc/website"
77-
footer={footer}
7876
>
7977
{children}
8078
</Layout>

0 commit comments

Comments
 (0)