From addf4675d4ab05d2e1b488824fdc51e48857772c Mon Sep 17 00:00:00 2001 From: Shane Jonas Date: Sun, 16 Nov 2025 23:28:27 -0500 Subject: [PATCH] fix: remove footer and fix sponsor text on light mode --- src/app/layout.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 392416e..a8685e3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,6 +1,6 @@ import Link from 'next/link'; import type { Metadata } from 'next'; -import { Footer, Layout, Navbar } from 'nextra-theme-docs'; +import { Layout, Navbar } from 'nextra-theme-docs'; import { getPageMap } from 'nextra/page-map'; import { Analytics } from "@vercel/analytics/next" import 'nextra-theme-docs/style.css'; @@ -60,7 +60,6 @@ const navbar = ( ); -const footer = ; export default async function RootLayout({ children, @@ -74,7 +73,6 @@ export default async function RootLayout({ navbar={navbar} pageMap={await getPageMap()} docsRepositoryBase="https://github.com/open-rpc/website" - footer={footer} > {children}