Bot & Automation

Market AI

/root/hermes-projects/Market AI

apps/admin-web/app/layout.tsx text
import type { Metadata } from "next";
import "./globals.css";

export const metadata: Metadata = {
  title: "Meme Coin Trading Bot",
  description: "Internal dashboard for Telegram meme coin scanner and trading bot.",
};

export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
  return (
    <html lang="en">
      <body>{children}</body>
    </html>
  );
}