fixflow / frontend /src /app /layout.tsx
E5K7's picture
feat: Next.js frontend with live IDE, URL routing, retry logic, and step tracker
342230a
raw
history blame contribute delete
699 Bytes
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "FixFlow",
description: "Autonomous Bug Resolution Agent by Z.ai",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" className={`${geistSans.variable} ${geistMono.variable}`} suppressHydrationWarning>
<body suppressHydrationWarning>{children}</body>
</html>
);
}