Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
19 changes: 18 additions & 1 deletion src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ const t = isDE ? {
license: 'Lizenz',
quickstart: 'Schnellstart',
specification: 'Spezifikation',
configurator: 'Data Configurator',
roadmap: 'Roadmap',
team: 'Team',
github: 'GitHub',
Expand All @@ -31,6 +32,7 @@ const t = isDE ? {
license: 'License',
quickstart: 'Quickstart',
specification: 'Specification',
configurator: 'Data Configurator',
roadmap: 'Roadmap',
team: 'Team',
github: 'GitHub',
Expand All @@ -51,6 +53,7 @@ const columns = [
links: [
{ label: t.quickstart, href: prefix + '/quickstart/quickstart/' },
{ label: t.specification, href: prefix + '/specification/overview/' },
{ label: t.configurator, href: prefix + '/configurator/', badge: 'Demo' },
],
},
{
Expand All @@ -75,7 +78,7 @@ const columns = [
{link.external ? (
<a href={link.href} rel="noopener" target="_blank">{link.label}</a>
) : (
<a href={link.href}>{link.label}</a>
<a href={link.href}>{link.label}{link.badge && <span class="pencil-footer__badge">{link.badge}</span>}</a>
)}
</li>
) )}
Expand Down Expand Up @@ -159,6 +162,20 @@ const columns = [
.pencil-footer__col-list a:hover {
color: var(--text-primary);
}
/* Memo 127 follow-up: Demo badge next to the Data Configurator link */
.pencil-footer__badge {
display: inline-block;
margin-left: 0.4rem;
padding: 1px 6px;
background: var(--sidebar-active-bg);
color: var(--accent);
border: 1px solid var(--accent);
border-radius: 4px;
font-size: 10px;
font-weight: 700;
letter-spacing: 0.04em;
vertical-align: middle;
}
.pencil-footer__inner {
max-width: 1100px;
margin: 0 auto;
Expand Down
4 changes: 2 additions & 2 deletions src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ const prefix = isDE ? '/de' : '';
// Roadmap and Team moved to Footer-Widget (PRD-012).
// PRD-013 audit: DE-Mirror complete — navLinks branch on isDE; both locales
// show 3 entries. EN: About/Docs/Blog. DE: Über/Docs/Blog.
// Memo 127 follow-up: the Data Configurator lives in the FOOTER (Resources) with a Demo
// badge, not in the top nav — keeps the header lean while it is still an early demo.
const navLinks = isDE ? [
{ text: 'Über', href: prefix + '/about/', match: '/about' },
{ text: 'Docs', href: prefix + '/quickstart/what-is-flowmcp/', match: '/quickstart' },
{ text: 'Blog', href: prefix + '/blog/', match: '/blog' },
// { text: 'Configurator', href: prefix + '/configurator/', match: '/configurator' }, // Memo 121: demo-hidden, enable when public
] : [
{ text: 'About', href: prefix + '/about/', match: '/about' },
{ text: 'Docs', href: prefix + '/quickstart/what-is-flowmcp/', match: '/quickstart' },
{ text: 'Blog', href: prefix + '/blog/', match: '/blog' },
// { text: 'Configurator', href: prefix + '/configurator/', match: '/configurator' }, // Memo 121: demo-hidden, enable when public
];
---

Expand Down
Loading
Loading