all repos — website @ ee3e7babf40292bc0829f1e2e304a1a1364c1905

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>