import type { Metadata } from "next";
import "./globals.css";

export const metadata: Metadata = {
  title: "ReadUp — 영어 읽기의 시작부터 완성까지",
  description:
    "알파벳과 단어부터 비즈니스 및 전문 분야의 글까지, 나에게 맞는 단계에서 영어 읽기 능력을 키워보세요.",
  robots: {
    index: false,
    follow: false,
    googleBot: {
      index: false,
      follow: false,
    },
  },
  icons: {
    icon: "/readup-logo.png",
    shortcut: "/readup-logo.png",
  },
};

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