File tree Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,14 @@ import React from 'react';
4
4
5
5
const Layout = ( { children } : { children : React . ReactNode } ) => {
6
6
return (
7
- < section className = "flex flex-col min-h-screen justify-between py-8 xl:px-24 md:px-10 px-5 relative" >
7
+ < section className = "flex flex-col min-h-screen justify-between py-8 relative" >
8
8
< Navbar />
9
- { children }
10
- < Footer />
9
+
10
+ < div className = 'xl:px-24 md:px-10 px-5 ' >
11
+ { children }
12
+ < Footer />
13
+ </ div >
14
+
11
15
</ section >
12
16
) ;
13
17
} ;
Original file line number Diff line number Diff line change @@ -5,10 +5,14 @@ import Events from '@/components/Event';
5
5
6
6
export default function EventsPage ( ) {
7
7
return (
8
- < section className = "flex flex-col min-h-screen justify-between py-8 xl:px-24 md:px-10 px-5 relative" >
8
+ < section className = "flex flex-col min-h-screen justify-between py-8 relative" >
9
9
< Navbar />
10
- < Events />
11
- < Footer />
10
+
11
+ < div className = 'xl:px-24 md:px-10 px-5 ' >
12
+ < Events />
13
+ < Footer />
14
+ </ div >
15
+
12
16
</ section >
13
17
) ;
14
18
}
You can’t perform that action at this time.
0 commit comments