From ddbbce9a63a83b2639061591803c1fcc0cafddc8 Mon Sep 17 00:00:00 2001 From: y3drk Date: Thu, 28 May 2026 15:38:15 +0200 Subject: [PATCH 1/6] Apply feedback items 2 & 3 from 05/28/26 Google Doc --- .../organisms/ENSEcosystemMembers/members-collection.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/members-collection.tsx b/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/members-collection.tsx index 8041694fc..53b271d22 100644 --- a/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/members-collection.tsx +++ b/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/members-collection.tsx @@ -80,12 +80,12 @@ export const ENS_ECOSYSTEM_MEMBERS = new Map< EnsEcosystemMemberTypes.app, [ { - name: "Official ENS Explorer for ENSv2", + name: "Official ENSv2 Explorer", websiteURL: new URL("https://explorer.ens.dev/"), icon: ENSv2ExplorerLogo, }, { - name: "Official ENS App for ENSv2", + name: "Official ENSv2 App", websiteURL: new URL("https://app.ens.dev/"), icon: ENSv2AppLogo, }, From 8f9f44f078b213fe95346fa59751904ac5eb85dd Mon Sep 17 00:00:00 2001 From: y3drk Date: Thu, 28 May 2026 16:30:05 +0200 Subject: [PATCH 2/6] Experimental repositioning of the icon wall --- .../organisms/ENSEcosystemMembers/index.tsx | 68 ++++++++++--------- .../members-collection.tsx | 14 ++-- .../src/components/overrides/Hero.astro | 2 +- 3 files changed, 46 insertions(+), 38 deletions(-) diff --git a/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/index.tsx b/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/index.tsx index af7386675..e00f51175 100644 --- a/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/index.tsx +++ b/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/index.tsx @@ -4,39 +4,41 @@ import cc from "classcat"; export const ENSEcosystemMembers = () => { return ( -
-

- Join the ENS ecosystem that builds on ENSNode -

- {Array.from(ENS_ECOSYSTEM_MEMBERS.entries()).map(([type, membersByType]) => ( -
- {membersByType.map((member: ENSEcosystemMemberDisplayData) => ( - - - - } - > - {member.name} - - ))} -
- ))} +
+
+

+ Join the ENS ecosystem that builds on ENSNode +

+ {Array.from(ENS_ECOSYSTEM_MEMBERS.entries()).map(([type, membersByType]) => ( +
+ {membersByType.map((member: ENSEcosystemMemberDisplayData) => ( + + + + } + > + {member.name} + + ))} +
+ ))} +
); }; diff --git a/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/members-collection.tsx b/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/members-collection.tsx index 53b271d22..5724a2b6e 100644 --- a/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/members-collection.tsx +++ b/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/members-collection.tsx @@ -16,8 +16,9 @@ import { NamespaceLogo } from "@components/atoms/logos/ens-ecosystem-members/Nam import type { JSX } from "react"; export const EnsEcosystemMemberTypes = { - organization: "organization", - app: "app", + Organization: "organization", + App: "app", + OfficialENSApp: "official-ens-app", } as const; export type EnsEcosystemMemberType = @@ -35,7 +36,7 @@ export const ENS_ECOSYSTEM_MEMBERS = new Map< ENSEcosystemMemberDisplayData[] >([ [ - EnsEcosystemMemberTypes.organization, + EnsEcosystemMemberTypes.Organization, [ { name: "ENS Labs", @@ -77,7 +78,7 @@ export const ENS_ECOSYSTEM_MEMBERS = new Map< ], ], [ - EnsEcosystemMemberTypes.app, + EnsEcosystemMemberTypes.OfficialENSApp, [ { name: "Official ENSv2 Explorer", @@ -89,6 +90,11 @@ export const ENS_ECOSYSTEM_MEMBERS = new Map< websiteURL: new URL("https://app.ens.dev/"), icon: ENSv2AppLogo, }, + ], + ], + [ + EnsEcosystemMemberTypes.App, + [ { name: "Grails", websiteURL: new URL("https://grails.app/"), diff --git a/docs/ensnode.io/src/components/overrides/Hero.astro b/docs/ensnode.io/src/components/overrides/Hero.astro index 3e3cd1c53..a44235b4b 100644 --- a/docs/ensnode.io/src/components/overrides/Hero.astro +++ b/docs/ensnode.io/src/components/overrides/Hero.astro @@ -8,7 +8,7 @@ import { legacyButtonVariants } from "@namehash/namehash-ui/legacy";
+ class="w-full max-w-[1280px] flex flex-col lg:flex-row justify-center sm:justify-between items-center gap-10 px-5 sm:px-8 max-lg:pt-12 max-sm:pb-8">
From 225464c6d8604e0ebaac45020e210f3276d3860e Mon Sep 17 00:00:00 2001 From: y3drk Date: Thu, 28 May 2026 16:47:45 +0200 Subject: [PATCH 3/6] Simplify the ecosystem members icon layout --- .../organisms/ENSEcosystemMembers/index.tsx | 53 +++-- .../members-collection.tsx | 188 ++++++++---------- 2 files changed, 104 insertions(+), 137 deletions(-) diff --git a/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/index.tsx b/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/index.tsx index e00f51175..55af44a2e 100644 --- a/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/index.tsx +++ b/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/index.tsx @@ -9,35 +9,30 @@ export const ENSEcosystemMembers = () => {

Join the ENS ecosystem that builds on ENSNode

- {Array.from(ENS_ECOSYSTEM_MEMBERS.entries()).map(([type, membersByType]) => ( -
- {membersByType.map((member: ENSEcosystemMemberDisplayData) => ( - - - - } - > - {member.name} - - ))} -
- ))} +
+ {ENS_ECOSYSTEM_MEMBERS.map((member: ENSEcosystemMemberDisplayData) => ( + + + + } + > + {member.name} + + ))} +
); diff --git a/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/members-collection.tsx b/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/members-collection.tsx index 5724a2b6e..2cdfe35d2 100644 --- a/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/members-collection.tsx +++ b/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/members-collection.tsx @@ -15,15 +15,6 @@ import { JustaNameLogo } from "@components/atoms/logos/ens-ecosystem-members/Jus import { NamespaceLogo } from "@components/atoms/logos/ens-ecosystem-members/NamespaceLogo"; import type { JSX } from "react"; -export const EnsEcosystemMemberTypes = { - Organization: "organization", - App: "app", - OfficialENSApp: "official-ens-app", -} as const; - -export type EnsEcosystemMemberType = - (typeof EnsEcosystemMemberTypes)[keyof typeof EnsEcosystemMemberTypes]; - export interface ENSEcosystemMemberDisplayData { name: string; websiteURL: URL; @@ -31,102 +22,83 @@ export interface ENSEcosystemMemberDisplayData { customStyles?: string; } -export const ENS_ECOSYSTEM_MEMBERS = new Map< - EnsEcosystemMemberType, - ENSEcosystemMemberDisplayData[] ->([ - [ - EnsEcosystemMemberTypes.Organization, - [ - { - name: "ENS Labs", - websiteURL: new URL("https://www.enslabs.org/"), - icon: ENSLabsLogo, - }, - { - name: "Ethereum Identity Foundation", - websiteURL: new URL("https://ethid.org/"), - icon: EthIdLogo, - }, - { - name: "Blockful", - websiteURL: new URL("https://www.blockful.io/"), - icon: BlockfulLogo, - }, - { - name: "Namespace", - websiteURL: new URL("https://www.namespace.ninja/"), - icon: NamespaceLogo, - }, - { - name: "JustaName", - websiteURL: new URL("https://www.justaname.id/"), - icon: JustaNameLogo, - customStyles: - "text-white opacity-50 group-hover:opacity-100 transition-opacity duration-200", - }, - { - name: "Enscribe", - websiteURL: new URL("https://www.enscribe.xyz/"), - icon: EnscribeLogo, - }, - { - name: "Ethereum Comments Protocol", - websiteURL: new URL("https://www.ethcomments.xyz/"), - icon: EthereumCommentsProtocolLogo, - }, - ], - ], - [ - EnsEcosystemMemberTypes.OfficialENSApp, - [ - { - name: "Official ENSv2 Explorer", - websiteURL: new URL("https://explorer.ens.dev/"), - icon: ENSv2ExplorerLogo, - }, - { - name: "Official ENSv2 App", - websiteURL: new URL("https://app.ens.dev/"), - icon: ENSv2AppLogo, - }, - ], - ], - [ - EnsEcosystemMemberTypes.App, - [ - { - name: "Grails", - websiteURL: new URL("https://grails.app/"), - icon: GrailsLogo, - }, - { - name: "ENS Vision", - websiteURL: new URL("https://ensvision.com/"), - icon: ENSVisionLogo, - }, - { - name: "Anticapture", - websiteURL: new URL("https://app.anticapture.com/"), - icon: AnticaptureLogo, - }, - { - name: "ENSvolution", - websiteURL: new URL("https://www.ensvolution.xyz/"), - icon: ENSvolutionLogo, - customStyles: "py-0.5 sm:py-1", - }, - { - name: "ens-test-env", - websiteURL: new URL("https://github.com/ensdomains/ens-test-env"), - icon: ENSTestEnvLogo, - }, - { - name: "Atlas (ENS CLI)", - websiteURL: new URL("https://github.com/stevedylandev/atlas"), - icon: AtlasLogo, - customStyles: "py-1 sm:py-2", - }, - ], - ], -]); +export const ENS_ECOSYSTEM_MEMBERS: ENSEcosystemMemberDisplayData[] = [ + { + name: "ENS Labs", + websiteURL: new URL("https://www.enslabs.org/"), + icon: ENSLabsLogo, + }, + { + name: "Ethereum Identity Foundation", + websiteURL: new URL("https://ethid.org/"), + icon: EthIdLogo, + }, + { + name: "Blockful", + websiteURL: new URL("https://www.blockful.io/"), + icon: BlockfulLogo, + }, + { + name: "Namespace", + websiteURL: new URL("https://www.namespace.ninja/"), + icon: NamespaceLogo, + }, + { + name: "JustaName", + websiteURL: new URL("https://www.justaname.id/"), + icon: JustaNameLogo, + customStyles: "text-white opacity-50 group-hover:opacity-100 transition-opacity duration-200", + }, + { + name: "Enscribe", + websiteURL: new URL("https://www.enscribe.xyz/"), + icon: EnscribeLogo, + }, + { + name: "Ethereum Comments Protocol", + websiteURL: new URL("https://www.ethcomments.xyz/"), + icon: EthereumCommentsProtocolLogo, + }, + { + name: "Official ENSv2 Explorer", + websiteURL: new URL("https://explorer.ens.dev/"), + icon: ENSv2ExplorerLogo, + }, + { + name: "Official ENSv2 App", + websiteURL: new URL("https://app.ens.dev/"), + icon: ENSv2AppLogo, + }, + { + name: "Grails", + websiteURL: new URL("https://grails.app/"), + icon: GrailsLogo, + }, + { + name: "ENS Vision", + websiteURL: new URL("https://ensvision.com/"), + icon: ENSVisionLogo, + }, + { + name: "Anticapture", + websiteURL: new URL("https://app.anticapture.com/"), + icon: AnticaptureLogo, + }, + { + name: "ENSvolution", + websiteURL: new URL("https://www.ensvolution.xyz/"), + icon: ENSvolutionLogo, + customStyles: "py-0.5 sm:py-1", + }, + { + name: "ens-test-env", + websiteURL: new URL("https://github.com/ensdomains/ens-test-env"), + icon: ENSTestEnvLogo, + }, + { + name: "Atlas (ENS CLI)", + websiteURL: new URL("https://github.com/stevedylandev/atlas"), + icon: AtlasLogo, + customStyles: "py-1 sm:py-2", + }, +]; From a96152f8bd687116e7285cc6953bccc1fe5a0f78 Mon Sep 17 00:00:00 2001 From: y3drk Date: Fri, 29 May 2026 11:16:39 +0200 Subject: [PATCH 4/6] Apply feedback items 1 from 05/28/26 Google Doc & roll back to old icon wall positioning --- .../ens-ecosystem-members/ENSv2AppLogo.tsx | 18 +- .../ENSv2ExplorerLogo.tsx | 20 +- .../organisms/ENSEcosystemMembers/index.tsx | 19 +- .../members-collection.tsx | 182 ++++++++++-------- .../src/components/overrides/Hero.astro | 2 +- 5 files changed, 129 insertions(+), 112 deletions(-) diff --git a/docs/ensnode.io/src/components/atoms/logos/ens-ecosystem-members/ENSv2AppLogo.tsx b/docs/ensnode.io/src/components/atoms/logos/ens-ecosystem-members/ENSv2AppLogo.tsx index ab367952d..4328b5c6c 100644 --- a/docs/ensnode.io/src/components/atoms/logos/ens-ecosystem-members/ENSv2AppLogo.tsx +++ b/docs/ensnode.io/src/components/atoms/logos/ens-ecosystem-members/ENSv2AppLogo.tsx @@ -1,35 +1,31 @@ export const ENSv2AppLogo = (props: React.SVGProps) => ( - diff --git a/docs/ensnode.io/src/components/atoms/logos/ens-ecosystem-members/ENSv2ExplorerLogo.tsx b/docs/ensnode.io/src/components/atoms/logos/ens-ecosystem-members/ENSv2ExplorerLogo.tsx index 916e91bc5..a517ce482 100644 --- a/docs/ensnode.io/src/components/atoms/logos/ens-ecosystem-members/ENSv2ExplorerLogo.tsx +++ b/docs/ensnode.io/src/components/atoms/logos/ens-ecosystem-members/ENSv2ExplorerLogo.tsx @@ -1,35 +1,31 @@ export const ENSv2ExplorerLogo = (props: React.SVGProps) => ( - diff --git a/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/index.tsx b/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/index.tsx index 55af44a2e..af7386675 100644 --- a/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/index.tsx +++ b/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/index.tsx @@ -4,13 +4,16 @@ import cc from "classcat"; export const ENSEcosystemMembers = () => { return ( -
-
-

- Join the ENS ecosystem that builds on ENSNode -

-
- {ENS_ECOSYSTEM_MEMBERS.map((member: ENSEcosystemMemberDisplayData) => ( +
+

+ Join the ENS ecosystem that builds on ENSNode +

+ {Array.from(ENS_ECOSYSTEM_MEMBERS.entries()).map(([type, membersByType]) => ( +
+ {membersByType.map((member: ENSEcosystemMemberDisplayData) => ( { ))}
-
+ ))}
); }; diff --git a/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/members-collection.tsx b/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/members-collection.tsx index 2cdfe35d2..f69bc9574 100644 --- a/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/members-collection.tsx +++ b/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/members-collection.tsx @@ -15,6 +15,14 @@ import { JustaNameLogo } from "@components/atoms/logos/ens-ecosystem-members/Jus import { NamespaceLogo } from "@components/atoms/logos/ens-ecosystem-members/NamespaceLogo"; import type { JSX } from "react"; +export const EnsEcosystemMemberTypes = { + Organization: "organization", + App: "app", +} as const; + +export type EnsEcosystemMemberType = + (typeof EnsEcosystemMemberTypes)[keyof typeof EnsEcosystemMemberTypes]; + export interface ENSEcosystemMemberDisplayData { name: string; websiteURL: URL; @@ -22,83 +30,97 @@ export interface ENSEcosystemMemberDisplayData { customStyles?: string; } -export const ENS_ECOSYSTEM_MEMBERS: ENSEcosystemMemberDisplayData[] = [ - { - name: "ENS Labs", - websiteURL: new URL("https://www.enslabs.org/"), - icon: ENSLabsLogo, - }, - { - name: "Ethereum Identity Foundation", - websiteURL: new URL("https://ethid.org/"), - icon: EthIdLogo, - }, - { - name: "Blockful", - websiteURL: new URL("https://www.blockful.io/"), - icon: BlockfulLogo, - }, - { - name: "Namespace", - websiteURL: new URL("https://www.namespace.ninja/"), - icon: NamespaceLogo, - }, - { - name: "JustaName", - websiteURL: new URL("https://www.justaname.id/"), - icon: JustaNameLogo, - customStyles: "text-white opacity-50 group-hover:opacity-100 transition-opacity duration-200", - }, - { - name: "Enscribe", - websiteURL: new URL("https://www.enscribe.xyz/"), - icon: EnscribeLogo, - }, - { - name: "Ethereum Comments Protocol", - websiteURL: new URL("https://www.ethcomments.xyz/"), - icon: EthereumCommentsProtocolLogo, - }, - { - name: "Official ENSv2 Explorer", - websiteURL: new URL("https://explorer.ens.dev/"), - icon: ENSv2ExplorerLogo, - }, - { - name: "Official ENSv2 App", - websiteURL: new URL("https://app.ens.dev/"), - icon: ENSv2AppLogo, - }, - { - name: "Grails", - websiteURL: new URL("https://grails.app/"), - icon: GrailsLogo, - }, - { - name: "ENS Vision", - websiteURL: new URL("https://ensvision.com/"), - icon: ENSVisionLogo, - }, - { - name: "Anticapture", - websiteURL: new URL("https://app.anticapture.com/"), - icon: AnticaptureLogo, - }, - { - name: "ENSvolution", - websiteURL: new URL("https://www.ensvolution.xyz/"), - icon: ENSvolutionLogo, - customStyles: "py-0.5 sm:py-1", - }, - { - name: "ens-test-env", - websiteURL: new URL("https://github.com/ensdomains/ens-test-env"), - icon: ENSTestEnvLogo, - }, - { - name: "Atlas (ENS CLI)", - websiteURL: new URL("https://github.com/stevedylandev/atlas"), - icon: AtlasLogo, - customStyles: "py-1 sm:py-2", - }, -]; +export const ENS_ECOSYSTEM_MEMBERS = new Map< + EnsEcosystemMemberType, + ENSEcosystemMemberDisplayData[] +>([ + [ + EnsEcosystemMemberTypes.Organization, + [ + { + name: "ENS Labs", + websiteURL: new URL("https://www.enslabs.org/"), + icon: ENSLabsLogo, + }, + { + name: "Ethereum Identity Foundation", + websiteURL: new URL("https://ethid.org/"), + icon: EthIdLogo, + }, + { + name: "Blockful", + websiteURL: new URL("https://www.blockful.io/"), + icon: BlockfulLogo, + }, + { + name: "Namespace", + websiteURL: new URL("https://www.namespace.ninja/"), + icon: NamespaceLogo, + }, + { + name: "JustaName", + websiteURL: new URL("https://www.justaname.id/"), + icon: JustaNameLogo, + customStyles: + "text-white opacity-50 group-hover:opacity-100 transition-opacity duration-200", + }, + { + name: "Enscribe", + websiteURL: new URL("https://www.enscribe.xyz/"), + icon: EnscribeLogo, + }, + { + name: "Ethereum Comments Protocol", + websiteURL: new URL("https://www.ethcomments.xyz/"), + icon: EthereumCommentsProtocolLogo, + }, + ], + ], + [ + EnsEcosystemMemberTypes.App, + [ + { + name: "Official ENSv2 Explorer", + websiteURL: new URL("https://explorer.ens.dev/"), + icon: ENSv2ExplorerLogo, + }, + { + name: "Official ENSv2 App", + websiteURL: new URL("https://app.ens.dev/"), + icon: ENSv2AppLogo, + }, + { + name: "Grails", + websiteURL: new URL("https://grails.app/"), + icon: GrailsLogo, + }, + { + name: "ENS Vision", + websiteURL: new URL("https://ensvision.com/"), + icon: ENSVisionLogo, + }, + { + name: "Anticapture", + websiteURL: new URL("https://app.anticapture.com/"), + icon: AnticaptureLogo, + }, + { + name: "ENSvolution", + websiteURL: new URL("https://www.ensvolution.xyz/"), + icon: ENSvolutionLogo, + customStyles: "py-0.5 sm:py-1", + }, + { + name: "ens-test-env", + websiteURL: new URL("https://github.com/ensdomains/ens-test-env"), + icon: ENSTestEnvLogo, + }, + { + name: "Atlas (ENS CLI)", + websiteURL: new URL("https://github.com/stevedylandev/atlas"), + icon: AtlasLogo, + customStyles: "py-1 sm:py-2", + }, + ], + ], +]); diff --git a/docs/ensnode.io/src/components/overrides/Hero.astro b/docs/ensnode.io/src/components/overrides/Hero.astro index a44235b4b..3e3cd1c53 100644 --- a/docs/ensnode.io/src/components/overrides/Hero.astro +++ b/docs/ensnode.io/src/components/overrides/Hero.astro @@ -8,7 +8,7 @@ import { legacyButtonVariants } from "@namehash/namehash-ui/legacy";
+ class="w-full max-w-[1280px] flex flex-col lg:flex-row justify-center sm:justify-between items-center gap-10 px-5 sm:px-8 max-lg:pt-20 max-sm:pb-8">
From a114a090e807cb3844c2e3ef69015d3fd21d7bb3 Mon Sep 17 00:00:00 2001 From: y3drk Date: Fri, 29 May 2026 15:34:48 +0200 Subject: [PATCH 5/6] Experimental repositioning of the icon wall v2 --- .../src/components/organisms/ENSEcosystemMembers/index.tsx | 4 ++-- docs/ensnode.io/src/components/organisms/Header.astro | 2 +- docs/ensnode.io/src/components/overrides/Hero.astro | 6 +++--- docs/ensnode.io/src/scripts/ScrollHeader.js | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/index.tsx b/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/index.tsx index af7386675..bbbc97ffa 100644 --- a/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/index.tsx +++ b/docs/ensnode.io/src/components/organisms/ENSEcosystemMembers/index.tsx @@ -4,14 +4,14 @@ import cc from "classcat"; export const ENSEcosystemMembers = () => { return ( -
+

Join the ENS ecosystem that builds on ENSNode

{Array.from(ENS_ECOSYSTEM_MEMBERS.entries()).map(([type, membersByType]) => (
{membersByType.map((member: ENSEcosystemMemberDisplayData) => ( + class="custom_header fixed top-0 w-full z-30 h-[56px] py-[9px] sm:h-[63px] sm:py-3 select-none">
diff --git a/docs/ensnode.io/src/components/overrides/Hero.astro b/docs/ensnode.io/src/components/overrides/Hero.astro index 3e3cd1c53..e1f0f7071 100644 --- a/docs/ensnode.io/src/components/overrides/Hero.astro +++ b/docs/ensnode.io/src/components/overrides/Hero.astro @@ -6,11 +6,11 @@ import { legacyButtonVariants } from "@namehash/namehash-ui/legacy"; ---
+ class="w-full h-screen lg:h-fit flex flex-col flex-nowrap justify-center items-center bg-[#011A25] relative overflow-x-clip overflow-y-visible lg:pt-[110px] lg:pb-[50px]">
+ class="relative z-20 not-content antialiased flex flex-col flex-nowrap gap-8 justify-center items-center lg:items-start">

@@ -51,7 +51,7 @@ import { legacyButtonVariants } from "@namehash/namehash-ui/legacy";