src/components/container.tsximport { clsx } from 'clsx'export function Container({className,children,align = 'wide',maxWidth,padding,}: {className?: stringchildren: React.ReactNodealign?: 'wide' | 'none' | 'content' | 'full' | 'navbar' | undefinedmaxWidth?: stringpadding?: string}) {const alignClasses = {wide: 'max-w-2xl',content: 'max-w-4xl',none: '',full: '',
Showing the first 20 lines.
Get full code