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>
24 lines
499 B
TypeScript
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>
|
|
);
|
|
}
|