This repository was archived by the owner on Mar 17, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
apps/web/app/(base-org)/brand/(7)/partnerships
sections/inverted-partner-lockup Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import { PartnershipsLockup } from 'apps/web/app/(base-org)/brand/(7)/partnershi
55import { PartnershipsConstruction } from 'apps/web/app/(base-org)/brand/(7)/partnerships/sections/2-construction' ;
66import { PartnershipsLockupSystem } from 'apps/web/app/(base-org)/brand/(7)/partnerships/sections/3-lockup-system' ;
77import { 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' ;
89import BrandIndex from 'apps/web/src/components/Brand/Index' ;
910import { 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 </ >
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments