Files
goodgo-platform/apps/web/components/design-system/index.ts
Ho Ngoc Hai 81ae59cb9d
Some checks failed
CI / Lint → Typecheck → Test → Build (22) (push) Failing after 33s
CI / E2E Tests (push) Has been skipped
CI / AI Services (Python) — Smoke (push) Failing after 9s
CodeQL Analysis / CodeQL (javascript-typescript) (push) Failing after 1m44s
Deploy / Build AI Services Image (push) Failing after 12s
E2E Tests / Playwright E2E (push) Failing after 14s
Security Scanning / Dependency Audit (pnpm) (push) Failing after 3s
Security Scanning / Trivy Scan — API Image (push) Failing after 1m55s
Security Scanning / Trivy Scan — Web Image (push) Failing after 53s
Security Scanning / Trivy Scan — AI Services Image (push) Failing after 53s
Security Scanning / Trivy Filesystem Scan (push) Failing after 46s
Deploy / Smoke Test Staging (push) Has been skipped
Deploy / Deploy to Production (push) Has been skipped
Security Scanning / Security Gate (push) Failing after 1s
Deploy / Rollback Production (push) Has been skipped
Deploy / Build API Image (push) Failing after 41s
Deploy / Build Web Image (push) Failing after 10s
Deploy / Deploy to Staging (push) Has been skipped
Deploy / Smoke Test Production (push) Has been skipped
Deploy / Rollback Staging (push) Has been skipped
refactor(web): extract Navbar and Footer into design-system components
- Create professional Navbar component with brand logo, user pill, active indicator, mobile drawer
- Create professional Footer component with contact info, social links, link groups
- Refactor public layout to use new design-system components via renderLink adapter
- Export new components from design-system index

Addresses TEC-3029: Nav and Footer refactoring

Co-Authored-By: Claude Opus 4 <noreply@anthropic.com>
2026-04-22 17:10:31 +07:00

58 lines
2.0 KiB
TypeScript

export { DataTable } from './data-table';
export type { DataTableColumn, DataTableProps, DataTableAlign } from './data-table';
export { StatCard } from './stat-card';
export type { StatCardProps } from './stat-card';
export { MarketIndex } from './market-index';
export type { MarketIndexProps } from './market-index';
export { PriceDelta } from './price-delta';
export type { PriceDeltaProps, PriceDeltaDirection } from './price-delta';
export { CompactHeader } from './compact-header';
export type { CompactHeaderProps } from './compact-header';
export { DashboardLayout } from './dashboard-layout';
export type { DashboardLayoutProps } from './dashboard-layout';
export { TickerStrip } from './ticker-strip';
export type { TickerStripProps, TickerItem } from './ticker-strip';
export { Badge } from './badge';
export type { BadgeProps } from './badge';
export { StatusChip } from './status-chip';
export type { StatusChipProps, PropertyStatus } from './status-chip';
export { DensityToggle } from './density-toggle';
export type { DensityToggleProps } from './density-toggle';
export { EmptyState } from './empty-state';
export type { EmptyStateProps } from './empty-state';
export { Skeleton } from './skeleton';
export type { SkeletonProps } from './skeleton';
export { KpiCard } from './kpi-card';
export type { KpiCardProps } from './kpi-card';
export { Surface, SurfaceElevated } from './surface';
export { Divider } from './divider';
export type { DividerProps } from './divider';
export { DensityProvider, useDensity, DENSITY_ROW_HEIGHT, DENSITY_CELL_PADDING, DENSITY_DATA_FONT } from './density-provider';
export type { DensityMode } from './density-provider';
export { Numeric } from './numeric';
export type { NumericProps } from './numeric';
export { Signal } from './signal';
export type { SignalDirection, SignalProps } from './signal';
export { Navbar } from './navbar';
export type { NavbarProps, NavLink, NavUser } from './navbar';
export { Footer } from './footer';
export type { FooterProps, FooterLinkGroup } from './footer';