From 8d551726149ad1378f46cda144fcb51f4dd0fc39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateus=20Felipe=20Gon=C3=A7alves?= Date: Wed, 13 Mar 2024 19:40:41 +0000 Subject: [PATCH] feat(ui): update background and arts on specific pages --- src/app/blog/layout.tsx | 7 ++++++- src/app/layout.tsx | 11 +++++------ src/app/page.tsx | 4 +++- src/app/projects/layout.tsx | 8 +++++++- 4 files changed, 21 insertions(+), 9 deletions(-) diff --git a/src/app/blog/layout.tsx b/src/app/blog/layout.tsx index faa29fde..1cb4eeef 100644 --- a/src/app/blog/layout.tsx +++ b/src/app/blog/layout.tsx @@ -3,5 +3,10 @@ export default function BlogLayout({ }: { children: React.ReactNode }) { - return
{children}
+ return ( +
+
+ {children} +
+ ) } diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d2d38e63..e98d85c5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -96,13 +96,12 @@ export default function RootLayout({ className={`scroll-smooth ${inter.variable} ${dancingScript.variable}`} > -
-
{children}
+
+
+
{children}
-
- -
-
+
+
diff --git a/src/app/page.tsx b/src/app/page.tsx index 93f8c5a3..095b1fed 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,11 +9,13 @@ import deconstructedRobotBroDark from './_components/deconstructed-robot-bro-dar export default function Page() { return (
+
+
- + Mateus Felipe, diff --git a/src/app/projects/layout.tsx b/src/app/projects/layout.tsx index 122de35b..b2dd9333 100644 --- a/src/app/projects/layout.tsx +++ b/src/app/projects/layout.tsx @@ -12,5 +12,11 @@ export default function AboutLayout({ }: { children: React.ReactNode }) { - return
{children}
+ return ( +
+
+ + {children} +
+ ) }