From 1ed5482b02435ca1c2d71c953de37323a175623b Mon Sep 17 00:00:00 2001 From: CodeGhost28 Date: Tue, 8 Oct 2024 15:52:56 +0200 Subject: [PATCH] Update globals.css --- app/globals.css | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/app/globals.css b/app/globals.css index 0b46ea13c8..4ce6f0e10d 100644 --- a/app/globals.css +++ b/app/globals.css @@ -64,7 +64,23 @@ --input: 240 3.7% 15.9%; --ring: 240 4.9% 83.9%; } +}import '../styles/globals.css'; +import Head from 'next/head'; + +function MyApp({ Component, pageProps }) { + return ( + <> + + ProfitX - Smart Trading Assistant + + + + + ); } + +export default MyApp; + @layer base { * { @@ -73,4 +89,4 @@ body { @apply bg-background text-foreground; } -} \ No newline at end of file +}