Skip to content

Commit

Permalink
feat: added in baseline viewer panels
Browse files Browse the repository at this point in the history
  • Loading branch information
cdxker committed Aug 25, 2024
1 parent fc24c0b commit a83e6a6
Showing 1 changed file with 29 additions and 3 deletions.
32 changes: 29 additions & 3 deletions apps/web/src/pages/Viewer.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
export const Viewer = () => {
return <div className="text-red-500">Hello Viewer</div>;
};
import { Text } from "@radix-ui/themes";

export const Viewer = () => <div className="flex border-t border-cyan-6 w-full justify-between">
<div className="border-l w-full h-full">
<Text>I'm pdf bro</Text>
</div>
<div className="border-l w-full p-4 space-y-4">
{[0, 1, 2, 3, 4].map(() => {

return (
<div className="border-2">

<div className="flex border-b-2 justify-between">
<Text> Header 2x </Text>
<div className="flex">
<Text> Markdown </Text>
<Text> Json</Text>
</div>
</div>

<div className="p-40">
<Text> What is up bro, I'ma chunk </Text>
</div>
</div>
);
})}
</div>

</div>;

0 comments on commit a83e6a6

Please sign in to comment.