Skip to content
Merged
Show file tree
Hide file tree
Changes from 23 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
df92bf1
feat-wip: what is ethereum revamp
wackerow Aug 9, 2025
ecc6eaf
wip: fill out toc, headers, images structure
wackerow Aug 9, 2025
1184612
feat: create IconBox
wackerow Aug 9, 2025
b1ecf63
feat: add content
wackerow Aug 10, 2025
ec27052
feat: what-is-ethereum iteration
wackerow Aug 10, 2025
73e456a
feat: iterate content
wackerow Aug 10, 2025
417e6d4
feat: content iteration
wackerow Aug 10, 2025
834752c
patch: layout styles
wackerow Aug 11, 2025
318d316
wip: content addition, component refactoring
wackerow Aug 11, 2025
1490d15
feat: add selectable attributes to ToC elements
wackerow Aug 12, 2025
f331ab8
refactor: reuse existing ToC; customize styling
wackerow Aug 12, 2025
8a42f54
fix: item number alignment
wackerow Aug 12, 2025
d53ff41
feat: add "how to start" content boxes
wackerow Aug 12, 2025
8f92ced
Merge branch 'dev' into what-is-ethereum
wackerow Aug 12, 2025
0df366a
i18n: extract strings for intl
wackerow Aug 12, 2025
253ee42
fix: links, metadata strings
wackerow Aug 12, 2025
2f32cbc
i18n-refactor: replace energy-consumption strings
wackerow Aug 12, 2025
e0473a1
Merge branch 'dev' into what-is-ethereum
wackerow Aug 14, 2025
b8b404e
fix: ToC active/hover styling
wackerow Aug 14, 2025
bfacdfa
patch: adjust mobile section scroll-mt
wackerow Aug 14, 2025
f2b7c08
temp: hide not-yet-available links
wackerow Aug 14, 2025
7da12dd
fix: use semantic naming for links
wackerow Aug 15, 2025
4c5b1c0
fix: use lucide icon for arrow right
wackerow Aug 21, 2025
40935cd
refactor: extract reusable intl string elements
wackerow Aug 21, 2025
778aea7
refactor: styles to "beginner" ToC variant
wackerow Aug 23, 2025
62dc632
Merge branch 'content-hero' into what-is-ethereum
wackerow Aug 26, 2025
66d1609
patch: ButtonLink hrefs
wackerow Aug 26, 2025
5cbf335
Merge branch 'dev' into what-is-ethereum
corwintines Aug 27, 2025
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
4 changes: 2 additions & 2 deletions app/[locale]/layer-2/learn/_components/learn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import { ButtonLink } from "@/components/ui/buttons/Button"
import useTranslation from "@/hooks/useTranslation"
import { usePathname } from "@/i18n/routing"
import Callout2Image from "@/public/images/layer-2/learn-hero.png"
import heroImg from "@/public/images/layer-2/learn-hero.png"
import OptimisticRollupImage from "@/public/images/layer-2/optimistic_rollup.png"
import RollupImage from "@/public/images/layer-2/rollup-2.png"
import ZKRollupImage from "@/public/images/layer-2/zk_rollup.png"
Expand All @@ -31,8 +32,7 @@ const Layer2Learn = ({

const heroProps: ContentHeroProps = {
breadcrumbs: { slug: pathname, startDepth: 1 },
heroImg: "/images/layer-2/learn-hero.png",
blurDataURL: "/images/layer-2/learn-hero.png",
heroImg,
title: t("page-layer-2-learn-title"),
description: t("page-layer-2-learn-description"),
buttons: [
Expand Down
4 changes: 2 additions & 2 deletions app/[locale]/layer-2/networks/_components/networks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import { ButtonLink } from "@/components/ui/buttons/Button"
import useTranslation from "@/hooks/useTranslation"
import { usePathname } from "@/i18n/routing"
import Callout2Image from "@/public/images/layer-2/layer-2-walking.png"
import heroImg from "@/public/images/layer-2/learn-hero.png"
import Callout1Image from "@/public/images/man-and-dog-playing.png"

const Layer2Networks = ({ layer2Data, locale, mainnetData }) => {
Expand All @@ -18,8 +19,7 @@ const Layer2Networks = ({ layer2Data, locale, mainnetData }) => {

const heroProps: ContentHeroProps = {
breadcrumbs: { slug: pathname, startDepth: 1 },
heroImg: "/images/layer-2/learn-hero.png",
blurDataURL: "/images/layer-2/learn-hero.png",
heroImg,
title: t("common:nav-networks-explore-networks-label"),
description: t("page-layer-2-networks-hero-description"),
}
Expand Down
Loading