mirror of
https://github.com/supabase/supabase.git
synced 2026-07-05 02:24:20 +08:00
20 lines
463 B
TypeScript
20 lines
463 B
TypeScript
import React from 'react'
|
|
|
|
interface Props {
|
|
title: string
|
|
}
|
|
|
|
export default function BlogHeader({ title }: Props) {
|
|
return (
|
|
<div className="dark:bg-dark-800 overflow-hidden border-b bg-white pt-4 pb-4 dark:border-gray-600">
|
|
<div className="container mx-auto px-8 sm:px-16 xl:px-20">
|
|
<div className="mx-auto">
|
|
<h1>
|
|
<span className="text-3xl">{title}</span>
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|