rowboat/apps/rowboatx/app/layout.tsx

22 lines
405 B
TypeScript
Raw Normal View History

2025-12-10 23:48:19 +05:30
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "RowboatX",
description: "RowboatX interface",
2025-12-10 23:48:19 +05:30
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className="antialiased" suppressHydrationWarning>
2025-12-10 23:48:19 +05:30
{children}
</body>
</html>
);
}