diff --git a/i18n/ja/code.json b/i18n/ja/code.json index 4707ffc74..32357de0a 100644 --- a/i18n/ja/code.json +++ b/i18n/ja/code.json @@ -501,6 +501,10 @@ "message": "CDPs / Clean Rooms", "description": "The partners page CDPs / Clean Rooms title" }, + "partners.advertisersPartners": { + "message": "Advertisers / Agencies", + "description": "The partners page Advertisers / Agencies title" + }, "requestAccess.metaTitle": { "message": "アクセスをリクエストする", "description": "The request access page meta title" diff --git a/src/data/partners.ts b/src/data/partners.ts index 8e2cfec6e..9f4782bdb 100644 --- a/src/data/partners.ts +++ b/src/data/partners.ts @@ -1,7 +1,7 @@ export type PartnersDataType = { name: string; logo: string; - type: ("Publishers" | "Data" | "DSP" | "CDP")[]; + type: ("Publishers" | "Data" | "DSP" | "CDP" | "Advertisers")[]; featured?: boolean; order?: number; }[]; @@ -229,7 +229,7 @@ export const partnersData: PartnersDataType = [ }, { name: "coc coc", - logo: "CocCoc_RGB.png", + logo: "cc_logo.png", type: ["Publishers"], }, { @@ -254,6 +254,11 @@ export const partnersData: PartnersDataType = [ logo: "deepintent.png", type: ["DSP"], }, + { + name: "Dentsu", + logo: "dentsu-logo-black.png", + type: ["Advertisers"], + }, { name: "Dek-D", logo: "ddlogo_orn_a 2.png", @@ -365,11 +370,16 @@ export const partnersData: PartnersDataType = [ logo: "gma-logo.png", type: ["Publishers"], }, - // { - // name: "Gum Gum", - // logo: "PartnerLogo_gumgum_580x250.png", - // type: ["DSP"], - // }, + { + name: "Gum Tree", + logo: "gumtree-logo.png", + type: ["Publishers"], + }, + { + name: "Guru Game", + logo: "gurugame-logo.png", + type: ["Publishers"], + }, { name: "GrowthLoop", logo: "GrowthLoop.png", @@ -435,6 +445,11 @@ export const partnersData: PartnersDataType = [ logo: "Index_Exchange_Logo_2021.png", type: ["DSP"], }, + { + name: "Interplay Media", + logo: "interplay-logo.png", + type: ["Publishers"], + }, // { // name: "Infosum", // logo: "InfoSum_Logo-580x250.png", @@ -445,6 +460,11 @@ export const partnersData: PartnersDataType = [ logo: "InTouch_Logo-580x250.png", type: ["Publishers"], }, + { + name: "iQiyi", + logo: "iQiyi.png", + type: ["Publishers"], + }, { name: "Kargo", logo: "PartnerLogo_Kargo_580x250.png", @@ -516,7 +536,7 @@ export const partnersData: PartnersDataType = [ }, { name: "Lotame", - logo: "lotame-logo.png", + logo: "lotame-epsilon-logo.png", type: ["Data"], }, { @@ -631,13 +651,6 @@ export const partnersData: PartnersDataType = [ logo: "networld.png", type: ["Publishers"], }, - { - name: "Neustar", - logo: "PartnerLogo_Neustar_256x256.png", - type: ["Data", "CDP"], - featured: true, - order: 14, - }, { name: "News Cafe", logo: "newscafe-logo-580x250.png", @@ -670,6 +683,11 @@ export const partnersData: PartnersDataType = [ logo: "NRich.png", type: ["DSP"], }, + { + name: "OGURY", + logo: "ogury.png", + type: ["DSP"], + }, { name: "OnAudience", logo: "OnAudience_logo.png", @@ -737,12 +755,12 @@ export const partnersData: PartnersDataType = [ logo: "PartnerLogo_PubMatic_580x250.png", type: ["DSP"], }, - { - name: "Qiyi", - logo: "PartnerLogo_iQiyi_256x256.png", + name: "Publift", + logo: "publift-logo.png", type: ["Publishers"], }, + { name: "Ranker", logo: "Ranker-logo.png", @@ -758,6 +776,11 @@ export const partnersData: PartnersDataType = [ logo: "rbb-today-logo-580x250.png", type: ["Publishers"], }, + { + name: "REA Group", + logo: "rea-group.png", + type: ["Publishers"], + }, { name: "Retty Inc.", logo: "Retty_rgb_logotype-580x250.png", @@ -947,6 +970,13 @@ export const partnersData: PartnersDataType = [ logo: "TNL-Media-Group-580x250.png", type: ["Publishers"], }, + { + name: "Transunion", + logo: "TULogo-blue.png", + type: ["Data", "CDP"], + featured: true, + order: 14, + }, { name: "Treasure Data", logo: "treasure-data-logo.svg", diff --git a/src/data/pressReleases.ts b/src/data/pressReleases.ts index efae3bdd1..50cdd2d02 100644 --- a/src/data/pressReleases.ts +++ b/src/data/pressReleases.ts @@ -157,6 +157,12 @@ export const articleList: ArticleItem[] = [ date: "May 12, 2025", locale: "en", }, + { + title: "Treasure Data", + url: "https://www.treasuredata.com/blog/unified-id-support/", + date: "September 3, 2025", + locale: "en", + }, //JA Articles { title: "Criteo", diff --git a/src/pages/partners.tsx b/src/pages/partners.tsx index 54d0824d5..ef0f4fcdc 100644 --- a/src/pages/partners.tsx +++ b/src/pages/partners.tsx @@ -56,6 +56,11 @@ const componentData = { message: "CDPs / Clean Rooms", description: "The partners page CDPs / Clean Rooms title", }), + advertisersPartners: translate({ + id: "partners.advertisersPartners", + message: "Advertisers / Agencies", + description: "The partners page Advertisers / Agencies title", + }), }; const dspPartners = partnersData.filter((partner) => @@ -74,6 +79,10 @@ const cdpPartners = partnersData.filter((partner) => partner.type.includes("CDP"), ); +const advertisersPartners = partnersData.filter((partner) => + partner.type.includes("Advertisers"), +); + function PartnerSection({ title, partners }: PartnerSection) { return (
@@ -134,6 +143,10 @@ export default function Partners(): JSX.Element { partners={dataPartners} /> + diff --git a/static/img/partners/TULogo-blue.png b/static/img/partners/TULogo-blue.png new file mode 100644 index 000000000..fd1842f7c Binary files /dev/null and b/static/img/partners/TULogo-blue.png differ diff --git a/static/img/partners/cc_logo.png b/static/img/partners/cc_logo.png new file mode 100644 index 000000000..379fbd512 Binary files /dev/null and b/static/img/partners/cc_logo.png differ diff --git a/static/img/partners/dentsu-logo-black.png b/static/img/partners/dentsu-logo-black.png new file mode 100644 index 000000000..fdb9f3913 Binary files /dev/null and b/static/img/partners/dentsu-logo-black.png differ diff --git a/static/img/partners/gumtree-logo.png b/static/img/partners/gumtree-logo.png new file mode 100644 index 000000000..a67f7c0aa Binary files /dev/null and b/static/img/partners/gumtree-logo.png differ diff --git a/static/img/partners/gurugame-logo.png b/static/img/partners/gurugame-logo.png new file mode 100644 index 000000000..ba212c8e5 Binary files /dev/null and b/static/img/partners/gurugame-logo.png differ diff --git a/static/img/partners/iQIYI.png b/static/img/partners/iQIYI.png new file mode 100644 index 000000000..42a2dadc7 Binary files /dev/null and b/static/img/partners/iQIYI.png differ diff --git a/static/img/partners/interplay-logo.png b/static/img/partners/interplay-logo.png new file mode 100644 index 000000000..93ffd544b Binary files /dev/null and b/static/img/partners/interplay-logo.png differ diff --git a/static/img/partners/lotame-epsilon-logo.png b/static/img/partners/lotame-epsilon-logo.png new file mode 100644 index 000000000..e442aa5f9 Binary files /dev/null and b/static/img/partners/lotame-epsilon-logo.png differ diff --git a/static/img/partners/ogury.png b/static/img/partners/ogury.png new file mode 100644 index 000000000..c0f102339 Binary files /dev/null and b/static/img/partners/ogury.png differ diff --git a/static/img/partners/publift-logo.png b/static/img/partners/publift-logo.png new file mode 100644 index 000000000..057cce51f Binary files /dev/null and b/static/img/partners/publift-logo.png differ diff --git a/static/img/partners/rea-group.png b/static/img/partners/rea-group.png new file mode 100644 index 000000000..b08f59d2a Binary files /dev/null and b/static/img/partners/rea-group.png differ