asdasd
This commit is contained in:
@@ -2291,19 +2291,19 @@
|
||||
return h('div', {
|
||||
className: 'mc-grid-bg',
|
||||
}, [
|
||||
h('div', { key: 'shell', className: 'mc-shell' }, [
|
||||
h('div', { key: 'frame', className: 'mc-app-shell' }, [
|
||||
h('aside', { key: 'sidebar', className: 'mc-sidebar' }, [
|
||||
h('div', { key: 'brand', className: 'mc-sidebar-brand' }, [
|
||||
h('div', { key: 'kicker', className: 'mc-kicker' }, 'Modul'),
|
||||
h('div', { key: 'shell', className: 'window-app-shell mc-shell' }, [
|
||||
h('div', { key: 'frame', className: 'window-app-frame' }, [
|
||||
h('aside', { key: 'sidebar', className: 'window-app-sidebar mc-sidebar' }, [
|
||||
h('div', { key: 'brand', className: 'window-app-brand mc-sidebar-brand' }, [
|
||||
h('div', { key: 'kicker', className: 'window-app-kicker mc-kicker' }, 'Modul'),
|
||||
h('h1', { key: 'title', className: 'mc-sidebar-title' }, 'Mining-Checker'),
|
||||
h('p', { key: 'copy', className: 'mc-text' }, 'Erfassung, OCR-Auswertung und Analyse von Mining-Messwerten in einer gemeinsamen Modulansicht.'),
|
||||
]),
|
||||
h('div', { key: 'nav', className: 'mc-nav-list' },
|
||||
h('div', { key: 'nav', className: 'window-app-nav-list mc-nav-list' },
|
||||
sectionEntries.map(([key, label]) => h('button', {
|
||||
key,
|
||||
type: 'button',
|
||||
className: cx('mc-nav-button', activeTab === key && 'is-active'),
|
||||
className: cx('window-app-nav-button mc-nav-button', activeTab === key && 'is-active'),
|
||||
onClick: () => {
|
||||
if (key === activeTab) {
|
||||
return;
|
||||
@@ -2313,15 +2313,15 @@
|
||||
},
|
||||
}, [
|
||||
h('strong', { key: 'label' }, label),
|
||||
h('span', { key: 'meta', className: 'mc-nav-meta' }, currentSectionSummary(key)),
|
||||
h('span', { key: 'meta', className: 'window-app-meta mc-nav-meta' }, currentSectionSummary(key)),
|
||||
]))
|
||||
),
|
||||
]),
|
||||
h('main', { key: 'main', className: 'mc-main' }, [
|
||||
h('section', { key: 'hero', className: 'mc-hero-panel' }, [
|
||||
h('main', { key: 'main', className: 'window-app-main mc-main' }, [
|
||||
h('section', { key: 'hero', className: 'window-app-hero mc-hero-panel' }, [
|
||||
h('div', { key: 'hero-copy', className: 'mc-hero-copy' }, [
|
||||
h('div', { key: 'hero-kicker', className: 'mc-kicker' }, 'Mining-Checker'),
|
||||
h('h2', { key: 'hero-title', className: 'mc-section-title' }, currentSectionLabel(activeTab)),
|
||||
h('div', { key: 'hero-kicker', className: 'window-app-kicker mc-kicker' }, 'Mining-Checker'),
|
||||
h('h2', { key: 'hero-title', className: 'window-app-title mc-section-title' }, currentSectionLabel(activeTab)),
|
||||
h('p', { key: 'hero-text', className: 'mc-text' }, currentSectionSummary(activeTab)),
|
||||
]),
|
||||
h('div', { key: 'hero-badges', className: 'mc-inline-row mc-inline-row--wrap' }, [
|
||||
|
||||
Reference in New Issue
Block a user