19 lines
373 B
TypeScript
19 lines
373 B
TypeScript
import type { Metadata } from "next";
|
|
import "@aidoit/ui/styles.css";
|
|
import "./app.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Aidoit",
|
|
description: "Personal AI operating system",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{ children: React.ReactNode }>) {
|
|
return (
|
|
<html lang="en">
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|