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

export const metadata: Metadata = {
  title: "Nayara Store | Fashion, Beauty & Herbal",
  description:
    "Belanja fashion, kosmetik, dan herbal pilihan dalam satu toko online yang nyaman.",
  other: {
    "codex-preview": "development",
  },
  icons: {
    icon: "/favicon.svg",
    shortcut: "/favicon.svg",
  },
};

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