Remodel/packages/web/app/layout.tsx
Mannu cdcefa389d
Some checks are pending
CI / Engine — lint / typecheck / test (push) Waiting to run
CI / API — lint / typecheck / test (push) Waiting to run
CI / Web — typecheck / lint / build (push) Waiting to run
Add renewable energy favicon with sun and leaf
2026-05-15 08:50:22 +05:30

39 lines
1,010 B
TypeScript

import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { Providers } from "./providers";
import AgentationWrapper from "@/components/AgentationWrapper";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "REmodel — RE Project Finance",
description: "Hybrid Solar + Wind + BESS project finance modeling",
icons: [{ rel: "icon", url: "/favicon.svg" }],
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html
lang="en"
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
>
<body className="min-h-full flex flex-col bg-background text-foreground">
<Providers>{children}</Providers>
<AgentationWrapper />
</body>
</html>
);
}