Files
Order-Loop/app/layout.tsx
2026-06-02 10:23:09 +03:00

28 lines
585 B
TypeScript

import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({
subsets: ["latin"],
variable: "--font-inter",
});
export const metadata: Metadata = {
title: "Order Loop",
description: "Order management for fast-moving teams",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" className={`${inter.variable} h-full`}>
<body className="min-h-full flex flex-col antialiased">
{children}
</body>
</html>
);
}