adding agent pages.

This commit is contained in:
killian-larcher
2024-11-10 23:12:38 +01:00
parent 84030dcba0
commit c76727f0d1
30 changed files with 627 additions and 8469 deletions
+8 -6
View File
@@ -1,8 +1,10 @@
import React from "react";
import type {Metadata} from "next";
import {Inter} from "next/font/google";
import "./globals.css";
import {Providers} from "./providers";
import {cn} from "@/lib/utils";
import {Inter} from "next/font/google";
const inter = Inter({subsets: ["latin"]});
@@ -19,11 +21,11 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<body className={cn(inter.className, "h-full")}>
<Providers>
{children}
</Providers>
</body>
<body className={cn(inter.className, "h-full")}>
<Providers>
{children}
</Providers>
</body>
</html>
);
}