Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 13 additions & 10 deletions src/components/cloud-object-storage/PartnersSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,19 @@ export const PartnersSection = ({ textContent }: PartnersSectionProps): JSX.Elem

<PartnerSelector textContent={textContent} activePartner={activePartner} onPlanTypeChange={setActivePartner} />

<div className="flex w-full flex-col gap-6 rounded-16 bg-white p-8 lg:h-[450px] lg:flex-row">
<Image
src={getImage(`/images/cloud-object-storage/${company.image}.webp`)}
alt={`Image of ${company.image}`}
width={512}
height={288}
className="w-full rounded-xl lg:w-1/2"
quality={100}
/>
<div className="flex flex-col items-center justify-center gap-6 lg:w-1/2 lg:items-start">
<div className="flex w-full flex-col gap-6 rounded-16 bg-white p-8 lg:flex-row">
<div className="flex w-full items-center justify-center lg:h-min lg:w-[512px]">
<Image
src={getImage(`/images/cloud-object-storage/${company.image}.webp`)}
alt={`Image of ${company.image}`}
className="w-full rounded-xl"
height={1000}
width={1000}
quality={100}
/>
</div>

<div className="flex flex-col items-center justify-center gap-6 lg:w-2/3 lg:items-start">
<Image
src={getImage(`/images/cloud-object-storage/${company.logo}.webp`)}
alt={`Logo of ${company.logo}`}
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/useSpecialOfferConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export const ENFORCED_LOCALE: Record<string, string> = {

export const ALTERNATE_RECOMENDATED_PLAN_PATHS = new Set<string>([]);
export const DARK_MODE_PATHS = new Set<string>(['oscar', 'rimembah', 'believemy', 'ghareeb']);
export const ALTERNATIVE_IMAGES_PATHS = new Set<string>(['baity', 'nfire']);
export const ALTERNATIVE_IMAGES_PATHS = new Set<string>(['baity', 'nfire', 'devopstoolbox', 'lefiltre', 'overfl0w']);
export const ONLY_ULTIMATE_PLANS_PATHS = new Set<string>(['ultimate']);
export const ULTIMATE_PREMIUM_PLANS_PATHS = new Set<string>([]);
export const ANNUAL_PLANS_PATHS = new Set<string>(['annual', 'ultimate']);
Expand Down
Loading