19 lines
382 B
TypeScript
19 lines
382 B
TypeScript
import "./globals.css";
|
|
import type { ReactNode } from "react";
|
|
|
|
export const metadata = {
|
|
title: "Islandflow",
|
|
description: "Realtime options flow & off-exchange analysis"
|
|
};
|
|
|
|
type RootLayoutProps = {
|
|
children: ReactNode;
|
|
};
|
|
|
|
export default function RootLayout({ children }: RootLayoutProps) {
|
|
return (
|
|
<html lang="en">
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|