2023-01-14 19:31:05 +00:00
|
|
|
import {ReactNode} from 'react'
|
2023-02-02 21:32:09 +00:00
|
|
|
import {Container} from '@/components/Container'
|
2023-02-18 22:37:09 +00:00
|
|
|
import {twMerge} from 'tailwind-merge'
|
2022-12-06 12:54:34 +00:00
|
|
|
|
2023-01-14 23:18:52 +00:00
|
|
|
type SimpleLayout = {
|
|
|
|
title: string
|
|
|
|
intro: string
|
|
|
|
children: ReactNode
|
|
|
|
gradient: string
|
|
|
|
}
|
|
|
|
|
2023-01-14 19:31:05 +00:00
|
|
|
export function SimpleLayout({
|
|
|
|
title,
|
|
|
|
intro,
|
|
|
|
children,
|
|
|
|
gradient
|
2023-01-14 23:18:52 +00:00
|
|
|
}: SimpleLayout) {
|
2022-12-06 12:54:34 +00:00
|
|
|
return (
|
|
|
|
<Container className="mt-16 sm:mt-32">
|
|
|
|
<header className="max-w-2xl">
|
|
|
|
<h1
|
2023-02-18 22:37:09 +00:00
|
|
|
className={twMerge(`
|
|
|
|
text-4xl
|
|
|
|
font-bold
|
|
|
|
tracking-tight
|
|
|
|
text-zinc-800
|
|
|
|
dark:text-zinc-100
|
|
|
|
sm:text-5xl
|
|
|
|
${gradient ? `${gradient} bg-clip-text dark:text-transparent` : ''}
|
|
|
|
`)}>
|
2022-12-06 12:54:34 +00:00
|
|
|
{title}
|
|
|
|
</h1>
|
|
|
|
<p className="mt-6 text-base text-zinc-600 dark:text-zinc-400">
|
|
|
|
{intro}
|
|
|
|
</p>
|
|
|
|
</header>
|
|
|
|
<div className="mt-16 sm:mt-20">{children}</div>
|
|
|
|
</Container>
|
|
|
|
)
|
|
|
|
}
|