'use client'; import { SponsorLogo } from '@/components/sponsors/SponsorLogo'; import { Card, Card as Surface } from '@/ui/Card'; import { Stack } from '@/ui/Stack'; import { Text } from '@/ui/Text'; interface SponsorBrandingPreviewProps { name: string; logoUrl?: string; primaryColor?: string; secondaryColor?: string; } /** * SponsorBrandingPreview * * Visualizes how a sponsor's branding (logo and colors) will appear on the platform. */ export function SponsorBrandingPreview({ name, logoUrl, primaryColor = '#198CFF', secondaryColor = '#141619' }: SponsorBrandingPreviewProps) { return ( Branding Preview {/* Logo Preview */} Primary Logo Asset {/* Color Palette */} Color Palette {primaryColor} {secondaryColor} {/* Mockup Hint */} These assets will be used for broadcast overlays and car liveries. ); }