feat: add mobile tab bar navigation

This commit is contained in:
张翔
2026-02-27 20:26:08 +08:00
parent b426bc9b62
commit 44bf88b200
3 changed files with 87 additions and 0 deletions
+2
View File
@@ -4,6 +4,7 @@ import "./globals.css";
import { ThemeProvider } from "@/contexts/theme-context";
import { WebVitals } from "@/components/analytics/web-vitals";
import { OrganizationSchema, WebsiteSchema } from "@/components/seo/structured-data";
import { MobileTabBar } from "@/components/layout/mobile-tab-bar";
const geistSans = Geist({
variable: "--font-geist-sans",
@@ -145,6 +146,7 @@ export default function RootLayout({
<ThemeProvider>
{children}
</ThemeProvider>
<MobileTabBar />
</body>
</html>
);