Initial commit

This commit is contained in:
zvspany
2026-03-07 16:34:10 +01:00
commit 48d3ac684f
524 changed files with 9352 additions and 0 deletions

24
app/layout.tsx Normal file
View File

@@ -0,0 +1,24 @@
import type { Metadata } from "next";
import "./globals.css";
import "currency-flags/dist/currency-flags.min.css";
export const metadata: Metadata = {
title: "NexCurrency | Modern Currency & Crypto Converter",
description:
"Convert fiat and crypto assets instantly with live rates, smart formatting, and a premium modern interface."
};
export default function RootLayout({
children
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" className="dark" suppressHydrationWarning>
<body className="font-sans antialiased">
{children}
</body>
</html>
);
}