Skip to content

Commit

Permalink
fix margin top pages bug
Browse files Browse the repository at this point in the history
  • Loading branch information
GiannisTsagkaropoulos committed May 15, 2024
1 parent 7ea727d commit df28ff9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/partners/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function PartnersPage() {
}, []);

return (
<main className="max-w-[2040px] mx-auto">
<main className="max-w-[2040px] mx-auto mt-[65px]">
<div
style={{
// backgroundImage: `url('./background/background-laptop-new.jpg')`,
Expand Down
2 changes: 1 addition & 1 deletion src/app/performers/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function Performes() {
backgroundSize: "cover",
}}
>
<div className="pb-10 max-w-[2040px] mx-auto">
<div className="pb-10 max-w-[2040px] mx-auto mt-[65px]">
<PerformersGrid performworkslist={PERFORMWORKSLIST} />
</div>
</main>
Expand Down
2 changes: 1 addition & 1 deletion src/app/speakers/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function Speakers() {
backgroundSize: "cover",
}}
>
<div className="max-w-[2040px] mx-auto">
<div className="max-w-[2040px] mx-auto mt-[65px]">
<SpeakersGrid speakerslist={SPEAKERSLIST} />
</div>
</main>
Expand Down

0 comments on commit df28ff9

Please sign in to comment.