File tree Expand file tree Collapse file tree 2 files changed +13
-15
lines changed Expand file tree Collapse file tree 2 files changed +13
-15
lines changed Original file line number Diff line number Diff line change @@ -21,9 +21,9 @@ export default function RootLayout({
21
21
return (
22
22
< html lang = "en" className = { inter . className } suppressHydrationWarning >
23
23
< body >
24
- < Providers >
25
- { children }
26
- </ Providers >
24
+ < div className = { `min-h-screen` } >
25
+ < Providers > { children } </ Providers >
26
+ </ div >
27
27
</ body >
28
28
</ html >
29
29
) ;
Original file line number Diff line number Diff line change @@ -70,18 +70,16 @@ export default function Portfolio() {
70
70
71
71
72
72
return (
73
- < div className = { `min-h-screen` } >
74
- < div className = "bg-neutral-100 dark:bg-neutral-950 text-gray-800 dark:text-gray-200 transition-colors duration-300" >
75
- < Navbar />
76
- < div className = "mx-auto max-w-full px-4 sm:px-6 md:px-8 lg:max-w-5xl xl:max-w-6xl 2xl:max-w-7xl" >
77
- < Header />
78
- < main className = "container mx-auto px-4 py-8" >
79
- < About />
80
- < Experiences arr = { experiencesArray } />
81
- < Projects arr = { projectsArray } />
82
- </ main >
83
- < Footer />
84
- </ div >
73
+ < div className = "bg-neutral-100 dark:bg-neutral-950 text-gray-800 dark:text-gray-200 transition-colors duration-300" >
74
+ < Navbar />
75
+ < div className = "mx-auto max-w-full px-4 sm:px-6 md:px-8 lg:max-w-5xl xl:max-w-6xl 2xl:max-w-7xl" >
76
+ < Header />
77
+ < main className = "container mx-auto px-4 py-8" >
78
+ < About />
79
+ < Experiences arr = { experiencesArray } />
80
+ < Projects arr = { projectsArray } />
81
+ </ main >
82
+ < Footer />
85
83
</ div >
86
84
</ div >
87
85
)
You can’t perform that action at this time.
0 commit comments