Files
cal-diy-oidc/apps/scheduler/app/layout.tsx
T

16 lines
342 B
TypeScript

import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "Vynte Schedule",
description: "Internal Vynte team scheduling",
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}