From aa24c1d4c672c0c28a4e91910fb620af3e3f7c50 Mon Sep 17 00:00:00 2001 From: zvspany Date: Thu, 12 Mar 2026 19:17:32 +0100 Subject: [PATCH] feat(layout): update metadata title and description for improved clarity --- app/layout.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/layout.tsx b/app/layout.tsx index 0802fc1..2a09b56 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -6,13 +6,13 @@ import "currency-flags/dist/currency-flags.min.css"; import { SmoothScrollProvider } from "@/components/providers/smooth-scroll-provider"; export const metadata: Metadata = { - title: "NexCurrency | Modern Currency & Crypto Converter", + title: "Fiat & Crypto Converter | Real-Time Exchange Rates", description: - "Convert fiat and crypto assets instantly with live rates, smart formatting, and a premium modern interface." + "Instantly convert fiat and crypto currencies with real-time exchange rates. Fast, simple, open-source currency converter with multi-currency results.", }; export default function RootLayout({ - children + children, }: Readonly<{ children: React.ReactNode; }>) {