Skip to content

feat(v1): Footer (Phase 1 - Foundation PR 6)#484

Merged
vitorvasc merged 4 commits into
open-telemetry:mainfrom
vitorvasc:feat/84-pr6-footer
May 18, 2026
Merged

feat(v1): Footer (Phase 1 - Foundation PR 6)#484
vitorvasc merged 4 commits into
open-telemetry:mainfrom
vitorvasc:feat/84-pr6-footer

Conversation

@vitorvasc
Copy link
Copy Markdown
Member

Swaps the legacy <Footer /> placeholder in <V1App /> for the v1 chrome. Lands the two-cluster Docsy-style footer plus the OTel-purple CNCF callout above it.

Contributes to #84.

What's in this PR

  • <FooterV1 /> at src/v1/components/layout/footer.tsx mirrors opentelemetry.io's .td-footer. Dark surface in both themes per upstream's .td-box--dark rule, with OTel-orange #f5a800 hover instead of Docsy's auto-mixed blue.
  • <CncfCallout /> at src/v1/components/layout/cncf-callout.tsx. OTel-purple td-box--secondary band above the footer with the upstream CNCF wordmark inlined as <CncfLogo /> (uses role="img" plus aria-label since it's not inside a labeled link) and a Linux Foundation attribution line
  • Scoped CSS partials at src/v1/styles/footer.css and src/v1/styles/cncf-callout.css. Both use .td-footer__* / .td-cncf-callout__* BEM hierarchies that only match elements rendered by <V1App />, so they stay inert in the legacy bundle. .td-footer__container and .td-cncf-callout__container both cap at max-width: 1320px (upstream Bootstrap .container-xxl)
  • <V1App /> drops the legacy <Footer /> import + JSX and mounts <CncfCallout /> + <FooterV1 /> instead. JSDoc updated to drop the PR 6 placeholder note
  • src/v1/styles/index.css picks up the two new @import lines plus a comment block listing every v1 chrome partial

What's not in this PR

  • Phase 2-5 route swaps inside <V1App /> (HomeV1, list page, detail page, etc.) belong to their respective phase PRs. Only the footer swap is here

Verification

  • bun run typecheck clean
  • bun run lint clean
  • bun run test src/v1/components/layout/footer.test.tsx src/v1/components/layout/cncf-callout.test.tsx passes 11/11
  • bun run test passes 848/848 across 87 files
  • bun run format -- src/v1 projects no-op on in-scope paths

Co-authored with Claude Opus 4.7.

Signed-off-by: Vitor Vasconcellos <vvasconcellos1@gmail.com>
@vitorvasc vitorvasc requested a review from Copilot May 14, 2026 13:08
@vitorvasc vitorvasc requested review from a team as code owners May 14, 2026 13:08
@netlify
Copy link
Copy Markdown

netlify Bot commented May 14, 2026

Deploy Preview for otel-ecosystem-explorer ready!

Name Link
🔨 Latest commit 3f02055
🔍 Latest deploy log https://app.netlify.com/projects/otel-ecosystem-explorer/deploys/6a0b3e61dc5b4200082d19da
😎 Deploy Preview https://deploy-preview-484--otel-ecosystem-explorer.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@otelbot
Copy link
Copy Markdown
Contributor

otelbot Bot commented May 14, 2026

PR Screenshots

Home

Light

Desktop Tablet Mobile
home desktop light home tablet light home mobile light

Dark

Desktop Tablet Mobile
home desktop dark home tablet dark home mobile dark
Instrumentation List

Light

Desktop Tablet Mobile
instrumentation-list desktop light instrumentation-list tablet light instrumentation-list mobile light

Dark

Desktop Tablet Mobile
instrumentation-list desktop dark instrumentation-list tablet dark instrumentation-list mobile dark
Detail — Details tab

Light

Desktop Tablet Mobile
detail-details desktop light detail-details tablet light detail-details mobile light

Dark

Desktop Tablet Mobile
detail-details desktop dark detail-details tablet dark detail-details mobile dark
Detail — Telemetry tab

Light

Desktop Tablet Mobile
detail-telemetry desktop light detail-telemetry tablet light detail-telemetry mobile light

Dark

Desktop Tablet Mobile
detail-telemetry desktop dark detail-telemetry tablet dark detail-telemetry mobile dark
Detail — Configuration tab

Light

Desktop Tablet Mobile
detail-configuration desktop light detail-configuration tablet light detail-configuration mobile light

Dark

Desktop Tablet Mobile
detail-configuration desktop dark detail-configuration tablet dark detail-configuration mobile dark
Collector List

Light

Desktop Tablet Mobile
collector-list desktop light collector-list tablet light collector-list mobile light

Dark

Desktop Tablet Mobile
collector-list desktop dark collector-list tablet dark collector-list mobile dark
Collector Detail

Light

Desktop Tablet Mobile
collector-detail desktop light collector-detail tablet light collector-detail mobile light

Dark

Desktop Tablet Mobile
collector-detail desktop dark collector-detail tablet dark collector-detail mobile dark

Captured from 3f02055 on feat/84-pr6-footer · workflow run· 2026-05-18 16:31 UTC

Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR advances the V1_REDESIGN chrome by replacing the legacy footer placeholder in <V1App /> with a Docsy-style v1 footer plus a CNCF callout band, along with the scoped CSS and inline SVG icon set needed to mirror opentelemetry.io’s footer patterns.

Changes:

  • Swap <Footer /> in V1App for <CncfCallout /> and <FooterV1 />.
  • Add v1-scoped CSS partials for the CNCF callout and footer, and wire them into src/v1/styles/index.css.
  • Add footer/callout components, tests, and the required inline SVG icons; update the Phase 1 planning doc snapshot.

Reviewed changes

Copilot reviewed 16 out of 16 changed files in this pull request and generated 3 comments.

Show a summary per file
File Description
projects/84-ui-ux-design/NEXT-STEPS.md Updates planning snapshots / PR checklist status for Phase 1 work.
ecosystem-explorer/src/v1/V1App.tsx Mounts the new CNCF callout + v1 footer instead of the legacy footer placeholder.
ecosystem-explorer/src/v1/styles/index.css Imports the new v1 chrome CSS partials (callout + footer).
ecosystem-explorer/src/v1/styles/footer.css Adds Docsy-style footer styling (dark surface, grid layout, link/icon rules).
ecosystem-explorer/src/v1/styles/cncf-callout.css Adds styling for the CNCF callout band above the footer.
ecosystem-explorer/src/v1/components/layout/footer.tsx Implements <FooterV1 /> and link inventory with icon rendering.
ecosystem-explorer/src/v1/components/layout/footer.test.tsx Verifies link inventory, external-link behavior, and copyright markup.
ecosystem-explorer/src/v1/components/layout/cncf-callout.tsx Implements the CNCF incubating-project statement + wordmark rendering.
ecosystem-explorer/src/v1/components/layout/cncf-callout.test.tsx Verifies CNCF copy, link target behavior, and accessible naming/region.
ecosystem-explorer/src/v1/components/icons/trademark-icon.tsx Adds inline trademark SVG icon (Font Awesome).
ecosystem-explorer/src/v1/components/icons/stack-overflow-icon.tsx Adds inline Stack Overflow SVG icon (Font Awesome).
ecosystem-explorer/src/v1/components/icons/slack-icon.tsx Adds inline Slack SVG icon (Font Awesome).
ecosystem-explorer/src/v1/components/icons/mastodon-icon.tsx Adds inline Mastodon SVG icon (Font Awesome).
ecosystem-explorer/src/v1/components/icons/github-icon.tsx Adds inline GitHub SVG icon (Font Awesome).
ecosystem-explorer/src/v1/components/icons/cncf-logo.tsx Adds inline CNCF wordmark SVG component for the callout.
ecosystem-explorer/src/v1/components/icons/bluesky-icon.tsx Adds inline Bluesky SVG icon (Font Awesome).
Comments suppressed due to low confidence (1)

ecosystem-explorer/src/v1/components/layout/footer.tsx:171

  • The CC BY 4.0 link opens in a new tab but sets rel="noopener" only. Elsewhere in the repo, external links with target="_blank" consistently use rel="noopener noreferrer"; adding noreferrer here would align with that pattern and improve security/privacy protections.
                <a
                  href="https://creativecommons.org/licenses/by/4.0"
                  target="_blank"
                  rel="noopener"
                >
                  CC BY 4.0
                </a>

Comment thread ecosystem-explorer/src/v1/components/layout/footer.tsx
Comment thread ecosystem-explorer/src/v1/components/layout/cncf-callout.tsx Outdated
Comment thread ecosystem-explorer/src/v1/styles/footer.css Outdated
Signed-off-by: Vitor Vasconcellos <vvasconcellos1@gmail.com>
@vitorvasc vitorvasc mentioned this pull request May 14, 2026
9 tasks
github-actions Bot pushed a commit that referenced this pull request May 14, 2026
Copy link
Copy Markdown
Member

@lucacavenaghi97 lucacavenaghi97 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

# Conflicts:
#	ecosystem-explorer/src/v1/styles/index.css
@vitorvasc vitorvasc added this pull request to the merge queue May 18, 2026
github-actions Bot pushed a commit that referenced this pull request May 18, 2026
Merged via the queue into open-telemetry:main with commit 21b4e47 May 18, 2026
15 checks passed
@vitorvasc vitorvasc deleted the feat/84-pr6-footer branch May 18, 2026 16:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants