forked from cerc-io/snowballtools-base
35 lines
1.2 KiB
TypeScript
35 lines
1.2 KiB
TypeScript
import { Button } from 'components/shared/Button';
|
|
import React from 'react';
|
|
|
|
const Page = () => {
|
|
return (
|
|
<div className="relative h-full min-h-full">
|
|
<div className="flex flex-col items-center justify-center max-w-7xl mx-auto px-20 py-20">
|
|
<h1 className="text-4xl font-bold">Manual Storybook</h1>
|
|
<p className="mt-4 text-lg text-center text-gray-500">
|
|
Get started by editing{' '}
|
|
<code className="p-2 font-mono text-sm bg-gray-100 rounded-md">
|
|
packages/frontend/src/pages/components/index.tsx
|
|
</code>
|
|
</p>
|
|
<div className="w-full h border border-gray-200 px-20 my-10" />
|
|
|
|
{/* Insert Components here */}
|
|
<div className="flex flex-col gap-10 items-center justify-between">
|
|
<h1 className="text-2xl font-bold">Button</h1>
|
|
<div className="flex gap-10 flex-wrap">
|
|
<Button size="lg" disabled>
|
|
Button
|
|
</Button>
|
|
<Button size="md">Button</Button>
|
|
<Button size="sm">Button</Button>
|
|
<Button size="xs">Button</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Page;
|