mirror of
https://github.com/complexcaresolutions/frontend.porwoll.de.git
synced 2026-03-17 17:33:41 +00:00
- Tailwind v4 theme config with Definity colors (accent #2CAADF, dark #111) - Montserrat + Open Sans font setup via next/font/google - UI components: Button (6 variants), Container, SectionHeader - Navigation with transparent-to-solid scroll behavior - Footer with social links, widgets, copyright bar - Block components: Hero, Text, CardGrid, Quote, ImageText, CTA, ContactForm, Timeline, Divider - Typography system with prose styles for rich text - Animation library with framer-motion variants - Page transitions via template.tsx - cn() utility (clsx + tailwind-merge) - Updated API layer with getSocialLinks Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
6 lines
166 B
TypeScript
6 lines
166 B
TypeScript
import { clsx, type ClassValue } from 'clsx'
|
|
import { twMerge } from 'tailwind-merge'
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs))
|
|
}
|