Files
SenofyandClaude Opus 4.6 881c210366 Add sidebar navigation with responsive bottom bar
Three pages: AutoTrader, AutoBuyer, AutoRequester. Fixed left sidebar
on desktop (md+), bottom tab bar on mobile.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-10 15:00:41 -05:00

24 lines
499 B
TypeScript

import type { Metadata } from "next";
import "./globals.css";
import Sidebar from "./components/Sidebar";
export const metadata: Metadata = {
title: "AutoTrader",
description: "AutoTrader Firm Dashboard",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className="antialiased">
<Sidebar />
<div className="md:ml-56 pb-16 md:pb-0">{children}</div>
</body>
</html>
);
}