import type { Metadata } from "next";
import Script from "next/script";

export const metadata: Metadata = {
  title: {
    default: "Nuclear Software",
    template: "%s | Nuclear Software",
  },
  description: "Generated by Nuclear Software",
  icons: {
    icon: "/logo.png",
    shortcut: "/logo.png",
    apple: "/logo.png",
  },
};

export default function RootLayout({
  children,
}: Readonly<{ children: React.ReactNode }>) {
  return (
    <html
      data-navigation-type="default"
      data-navbar-horizontal-shape="default"
      lang="en-US"
      dir="ltr"
      data-bs-theme="white"
    >
      <head>
        <Script src="/phoenix/vendors/simplebar/simplebar.min.js" strategy="afterInteractive" />
        <Script src="/phoenix/assets/js/config.js" strategy="afterInteractive" />

        <link rel="preconnect" href="https://fonts.googleapis.com/" />
        <link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="anonymous" />
        <link
          href="https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700;800;900&display=swap"
          rel="stylesheet"
        />
        <link href="/phoenix/vendors/simplebar/simplebar.min.css" rel="stylesheet" />
        <link href="/phoenix/assets/css/theme.min.css" type="text/css" rel="stylesheet" id="style-default" />
        <link href="/phoenix/assets/css/user.min.css" type="text/css" rel="stylesheet" id="user-style-default" />
      </head>
      <body>
        {children}
        <Script src="/phoenix/vendors/popper/popper.min.js" strategy="afterInteractive" />
        <Script src="/phoenix/vendors/bootstrap/bootstrap.min.js" strategy="afterInteractive" />
        <Script src="/phoenix/vendors/anchorjs/anchor.min.js" strategy="afterInteractive" />
        <Script src="/phoenix/vendors/is/is.min.js" strategy="afterInteractive" />
        <Script src="/phoenix/vendors/fontawesome/all.min.js" strategy="afterInteractive" />
        <Script src="/phoenix/vendors/lodash/lodash.min.js" strategy="afterInteractive" />
        <Script src="/phoenix/vendors/list.js/list.min.js" strategy="afterInteractive" />
        <Script src="/phoenix/vendors/feather-icons/feather.min.js" strategy="afterInteractive" />
        <Script src="/phoenix/vendors/dayjs/dayjs.min.js" strategy="afterInteractive" />
        <Script src="/phoenix/assets/js/phoenix.js" strategy="afterInteractive" />
      </body>
    </html>
  );
}
