all repos — website @ 0c8fd874b1da671b1e877f4c9321a22ef95cbd1f

My official website.

src/components/Container.astro (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
---
import { cn } from '@/lib/utils'

interface Props {
  class?: string
}

const { class: className } = Astro.props
---

<div class={cn('mx-auto max-w-screen-md px-4', className)}><slot /></div>