diff --git a/.npmrc b/.npmrc index 1778f10..1a29c66 100644 --- a/.npmrc +++ b/.npmrc @@ -1 +1,2 @@ public-hoist-pattern[]=*@nextui-org/* +registry=https://registry.npmjs.org/ \ No newline at end of file diff --git a/src/app/[locale]/get-key/page.tsx b/src/app/[locale]/get-key/page.tsx index e9c7cec..f623860 100644 --- a/src/app/[locale]/get-key/page.tsx +++ b/src/app/[locale]/get-key/page.tsx @@ -28,7 +28,7 @@ export default function GetKey() { id="key" name="key" onChange={(e) => setOrderId(e.target.value)} - className="block w-full rounded-md bg-white/5 px-3 py-1.5 text-base dark:text-white outline outline-1 -outline-offset-1 outline-white/10 placeholder:text-gray-500 focus:outline focus:outline-2 focus:-outline-offset-2 focus:outline-indigo-500 sm:text-sm/6" + className="block w-full rounded-md bg-white/5 px-3 py-1.5 text-base dark:text-white outline outline-1 -outline-offset-1 dark:outline-white/10 placeholder:text-gray-500 focus:outline focus:outline-2 focus:-outline-offset-2 focus:outline-indigo-500 sm:text-sm/6" /> diff --git a/src/app/[locale]/layout.tsx b/src/app/[locale]/layout.tsx index a5d53ba..1ea31ed 100644 --- a/src/app/[locale]/layout.tsx +++ b/src/app/[locale]/layout.tsx @@ -1,3 +1,4 @@ +import { Metadata } from 'next'; import { NextIntlClientProvider } from 'next-intl'; import { getMessages } from 'next-intl/server'; import { notFound } from 'next/navigation'; @@ -5,6 +6,13 @@ import { routing } from '@/i18n/routing'; import { Providers } from './provider'; +import "@/app/globals.css"; + +export const metadata: Metadata = { + title: "MirrorChyan", + description: "Next generation of CDN for developers", +}; + export default async function LocaleLayout({ children, params, @@ -23,7 +31,7 @@ export default async function LocaleLayout({ const messages = await getMessages(); return ( - +