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

export const metadata: Metadata = {
  metadataBase: new URL("https://fathorrozi.my.id"),
  title: {
    default: "Fathor Rozi — Full-Stack Developer",
    template: "%s — Fathor Rozi",
  },
  description:
    "Portfolio Fathor Rozi, Full-Stack Web & Mobile Developer dari Sumenep, Indonesia.",
  icons: {
    icon: "/favicon.svg",
    shortcut: "/favicon.svg",
  },
};

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