Skip to content

Commit

Permalink
change 2 sponsor logos and name
Browse files Browse the repository at this point in the history
  • Loading branch information
GiannisTsagkaropoulos committed May 17, 2024
1 parent 91dcb4d commit e38ed88
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 15 deletions.
2 changes: 1 addition & 1 deletion data/partners.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const PARTNERSLIST = [
id: "partners5",
fullname: "Cenergy Holdings",
url: "https://cenergyholdings.com/el/",
photo: "./sponsors/grand/cenergy-logo.jpeg",
photo: "./sponsors/grand/cenergy-logo.png",
type: "Grand Sponsors",
},
{
Expand Down
Binary file removed public/sponsors/grand/cenergy-logo.jpeg
Binary file not shown.
Binary file added public/sponsors/grand/cenergy-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/sponsors/supporters/iky-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 14 additions & 11 deletions src/app/partners/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,22 @@ function PartnersPage() {
}, []);

return (
<main className="max-w-[2040px] mx-auto mt-[65px]">
<div
style={{
// backgroundImage: `url('./background/background-laptop-new.jpg')`,
backgroundImage: backgroundImage,
backgroundAttachment: "fixed",
backgroundPosition: "center",
backgroundRepeat: "no-repeat",
backgroundSize: "cover",
}}
>
<main
style={{
// backgroundImage: `url('./background/background-laptop-new.jpg')`,
backgroundImage: backgroundImage,
backgroundAttachment: "fixed",
backgroundPosition: "center",
backgroundRepeat: "no-repeat",
backgroundSize: "cover",
}}
className="mt-[65px]"
>
{/* <div > */}
<div className="max-w-[2040px] mx-auto">
<PartnersGrid partnerslist={PARTNERSLIST} />
</div>
{/* </div> */}
</main>
);
}
Expand Down
4 changes: 1 addition & 3 deletions src/components/Partners/PartnersGrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ export default function PartnersGrid({ partnerslist }) {
{filterPartnersByType(type).map((partner, index) => (
<li
key={index}
className={`mb-24 lg:mb-24 ${
type === "Supporters" ? "lg:col-span-1" : ""
}`}
className={` ${type === "Supporters" ? "lg:col-span-1" : ""}`}
>
<Partners
fullname={partner.fullname}
Expand Down

0 comments on commit e38ed88

Please sign in to comment.