'use client' /** * Brandbook - Corporate Design & Styleguide * * Aktualisiert fuer admin-v2 mit: * - Neuen Kategorie-Farben * - Aktuellem UI-Design * - Inter Font Family */ import { useState } from 'react' import { TABS, type BrandbookTab } from './constants' import { ColorsTab } from './_components/ColorsTab' import { TypographyTab } from './_components/TypographyTab' import { ComponentsTab } from './_components/ComponentsTab' import { LogoTab } from './_components/LogoTab' import { VoiceTab } from './_components/VoiceTab' export default function BrandbookPage() { const [activeTab, setActiveTab] = useState('colors') return (
{/* Header */}

Brandbook

Corporate Design & Styleguide fuer BreakPilot Admin v2

{/* Tabs */}
{TABS.map((tab) => ( ))}
{/* Tab Content */} {activeTab === 'colors' && } {activeTab === 'typography' && } {activeTab === 'components' && } {activeTab === 'logo' && } {activeTab === 'voice' && }
) }