mirror of
https://github.com/supabase/supabase.git
synced 2026-05-15 07:14:04 +08:00
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com>
68 lines
2.5 KiB
TypeScript
68 lines
2.5 KiB
TypeScript
import { ExternalLink } from 'lucide-react'
|
|
import Link from 'next/link'
|
|
import { PropsWithChildren } from 'react'
|
|
import { Badge } from 'ui'
|
|
|
|
import { CategoryAttribute } from './Usage.constants'
|
|
import { ScaffoldContainer, ScaffoldDivider } from '@/components/layouts/Scaffold'
|
|
|
|
export interface SectionContent {
|
|
section: Pick<CategoryAttribute, 'name' | 'description' | 'links'>
|
|
includedInPlan?: boolean
|
|
}
|
|
|
|
export const SectionContent = ({
|
|
section,
|
|
includedInPlan,
|
|
children,
|
|
}: PropsWithChildren<SectionContent>) => {
|
|
const { name, description, links } = section
|
|
|
|
return (
|
|
<>
|
|
<ScaffoldContainer>
|
|
<div className="mx-auto flex flex-col gap-10 py-8 md:py-16">
|
|
<div className="grid grid-cols-12 gap-6">
|
|
<div className="col-span-12 lg:col-span-5">
|
|
<div className="sticky top-32 space-y-6">
|
|
<div className="space-y-1">
|
|
<div className="flex items-center space-x-2">
|
|
<p className="text-base capitalize">{name}</p>
|
|
{includedInPlan === false && <Badge>Not included</Badge>}
|
|
</div>
|
|
<div className="grid gap-4">
|
|
{description.split('\n').map((value, idx) => (
|
|
<p key={`desc-${idx}`} className="text-sm text-foreground-light pr-8">
|
|
{value}
|
|
</p>
|
|
))}
|
|
</div>
|
|
</div>
|
|
{links && links.length > 0 && (
|
|
<div className="space-y-2">
|
|
<p className="text-xs font-mono uppercase text-foreground-lighter mb-2">
|
|
More information
|
|
</p>
|
|
{links.map((link) => (
|
|
<div key={link.url}>
|
|
<Link href={link.url} target="_blank" rel="noreferrer">
|
|
<div className="inline-flex items-center space-x-2 text-foreground-light hover:text-foreground transition">
|
|
<p className="text-sm">{link.name}</p>
|
|
<ExternalLink size={16} strokeWidth={1.5} />
|
|
</div>
|
|
</Link>
|
|
</div>
|
|
))}
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
<div className="col-span-12 lg:col-span-7 space-y-6">{children}</div>
|
|
</div>
|
|
</div>
|
|
</ScaffoldContainer>
|
|
<ScaffoldDivider />
|
|
</>
|
|
)
|
|
}
|