Skip to content
This repository was archived by the owner on Mar 17, 2026. It is now read-only.

Commit 0305dd4

Browse files
committed
Added inverted partner lockup
1 parent 4fd080a commit 0305dd4

3 files changed

Lines changed: 46 additions & 0 deletions

File tree

apps/web/app/(base-org)/brand/(7)/partnerships/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { PartnershipsLockup } from 'apps/web/app/(base-org)/brand/(7)/partnershi
55
import { PartnershipsConstruction } from 'apps/web/app/(base-org)/brand/(7)/partnerships/sections/2-construction';
66
import { PartnershipsLockupSystem } from 'apps/web/app/(base-org)/brand/(7)/partnerships/sections/3-lockup-system';
77
import { PartnershipsLockupExamples } from 'apps/web/app/(base-org)/brand/(7)/partnerships/sections/4-lockup-examples';
8+
import { InvertedPartnerLockup } from 'apps/web/app/(base-org)/brand/(7)/partnerships/sections/inverted-partner-lockup';
89
import BrandIndex from 'apps/web/src/components/Brand/Index';
910
import { BRAND_PAGES_INDEX } from 'apps/web/app/(base-org)/brand/(main)/page';
1011

@@ -28,6 +29,7 @@ export default function Page() {
2829
<PartnershipsConstruction />
2930
<PartnershipsLockupSystem />
3031
<PartnershipsLockupExamples />
32+
<InvertedPartnerLockup />
3133

3234
<BrandIndex index={FINAL_INDEX} hasHeading />
3335
</>
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import { ImageComponent, SvgImport } from 'apps/web/src/components/Brand/Image';
2+
import SubBrandsLockupSvg from './inverted-partner-lockup.svg';
3+
4+
const svg = SubBrandsLockupSvg as SvgImport;
5+
6+
const images = [
7+
{
8+
src: svg.src,
9+
alt: 'Inverted Partner Lockup',
10+
width: svg.width,
11+
height: svg.height,
12+
},
13+
];
14+
15+
export function InvertedPartnerLockup() {
16+
return (
17+
<ImageComponent
18+
id="inverted-partner-lockup"
19+
title="Inverted Partner Lockup"
20+
description={
21+
<>
22+
If you’re creating assets for your own launch or submitting them for Base amplification,
23+
your logo should come first, followed by the Base logo. This shows that Base is supporting
24+
your launch, while keeping both brands visible.
25+
</>
26+
}
27+
images={images}
28+
/>
29+
);
30+
}
Lines changed: 14 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)