import { cn } from 'ui' const Checkbox = () => (
) const Row = ({ className, col1, col2, col3, }: { className?: string col1: string col2: string col3: string }) => (

{col1}

{col2}

{col3}

) export const GetStartedHero = () => { return (
1

create table todos {`(`}

2

id bigint generated by default,

3

task text,

4

status status default 'Not Started',

5

user_id uuid references auth.users not null,

6

inserted_at timestamp with time zone,

7

updated_at timestamp with time zone,

8

{`);`}

) }