Files
JML/src/app/layout.tsx

31 lines
760 B
TypeScript
Raw Normal View History

2026-04-21 22:20:39 +06:00
import type { Metadata } from "next";
import { Inter } from "next/font/google";
2026-04-21 22:20:39 +06:00
import "./globals.css";
import Sidebar from "@/components/Sidebar";
2026-04-21 22:20:39 +06:00
const inter = Inter({
variable: "--font-inter",
2026-04-21 22:20:39 +06:00
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "JAIBEN Mobility - EV Rental Platform",
description: "JAIBEN Mobility Ltd - EV Rental, Rent-to-Own, Share EV, FOCO Investor",
2026-04-21 22:20:39 +06:00
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" className={inter.variable}>
<body className="min-h-screen bg-slate-50 antialiased">
<Sidebar />
<main className="lg:ml-64 min-h-screen">
{children}
</main>
</body>
2026-04-21 22:20:39 +06:00
</html>
);
}