diff options
| -rw-r--r-- | apps/web/components/get-started.tsx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/apps/web/components/get-started.tsx b/apps/web/components/get-started.tsx new file mode 100644 index 00000000..e3498ef3 --- /dev/null +++ b/apps/web/components/get-started.tsx @@ -0,0 +1,10 @@ +import { Logo } from "@ui/assets/Logo" + +export const GetStarted = () => { + return ( + <div> + <Logo /> + <h1>Get Started</h1> + </div> + ) +} |