File tree Expand file tree Collapse file tree 5 files changed +8
-10
lines changed Expand file tree Collapse file tree 5 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -19,9 +19,7 @@ export default function RootLayout({
19
19
return (
20
20
< html lang = "en" >
21
21
< body className = { inter . className } >
22
- < main className = "w-[95vw] mx-auto p-10" >
23
22
{ children }
24
- </ main >
25
23
</ body >
26
24
</ html >
27
25
) ;
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import Footer from "./components/Footer";
13
13
14
14
export default function Home ( ) {
15
15
return (
16
- < >
16
+ < main className = "w-[95vw] mx-auto p-10" >
17
17
< HomeNavbar />
18
18
< div className = "bg-[#CDE1F2] p-10" >
19
19
< div className = "flex lg:flex-row md:flex-col sm:items-center xs:flex-col justify-between row-1" >
@@ -90,6 +90,6 @@ export default function Home() {
90
90
</ div >
91
91
< hr className = "mt-5" />
92
92
< Footer />
93
- </ >
93
+ </ main >
94
94
) ;
95
95
}
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import Footer from "@/app/components/Footer";
9
9
10
10
const Community = ( ) => {
11
11
return (
12
- < >
12
+ < main className = "w-[95vw] mx-auto p-10" >
13
13
< CommunitiesNavbar />
14
14
< div >
15
15
< div className = "text-lg font-bold mt-10 mb-5" >
@@ -85,7 +85,7 @@ const Community = () => {
85
85
</ div >
86
86
< hr className = "mt-5" />
87
87
< Footer />
88
- </ >
88
+ </ main >
89
89
) ;
90
90
} ;
91
91
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ const MyAccount = () => {
12
12
const id = searchParams . get ( "userId" ) ;
13
13
14
14
return (
15
- < >
15
+ < main className = "w-[95vw] mx-auto p-10" >
16
16
< HomeNavbar />
17
17
< div
18
18
className = "p-10 bg-cover bg-center h-screen"
@@ -43,7 +43,7 @@ const MyAccount = () => {
43
43
</ div >
44
44
< hr className = "mt-5" />
45
45
< Footer />
46
- </ >
46
+ </ main >
47
47
) ;
48
48
} ;
49
49
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import Footer from "@/app/components/Footer";
7
7
8
8
const Profile = ( ) => {
9
9
return (
10
- < >
10
+ < main className = "w-[95vw] mx-auto p-10" >
11
11
< ProfileNavbar />
12
12
< hr className = "mt-5" />
13
13
< div className = "row-1 flex flex-wrap items-center gap-5 justify-center mt-5" >
@@ -85,7 +85,7 @@ const Profile = () => {
85
85
</ div >
86
86
< hr className = "mt-5" />
87
87
< Footer />
88
- </ >
88
+ </ main >
89
89
) ;
90
90
} ;
91
91
You can’t perform that action at this time.
0 commit comments