diff --git a/src/app/page.tsx b/src/app/page.tsx
index 4c97a75..a356f5a 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,9 +1,39 @@
-import ApiUrl from '@/components/ApiUrl';
+'use client';
+
+import { Card, CardHeader, CardBody } from '@nextui-org/card';
+import { Button, Spacer } from '@nextui-org/react';
+import { IconArrowUp, IconTrash } from '@tabler/icons-react';
+import { TextArea } from '@/components/Textearea';
export default function Page() {
return (
-
-
+
+
+
+
+
+ Chat with AI
+
+
+
+
+
+
+
+
+
);
}
diff --git a/src/components/Textearea.tsx b/src/components/Textearea.tsx
new file mode 100644
index 0000000..6d14d97
--- /dev/null
+++ b/src/components/Textearea.tsx
@@ -0,0 +1,30 @@
+import { extendVariants } from '@nextui-org/react';
+
+const TextArea = ({ ...props }) => {
+ return (
+
+ );
+};
+const ExtendedTextarea = extendVariants(TextArea, {
+ variants: {
+ radius: {
+ xs: {
+ inputWrapper: ['bg-content6', 'rounded', 'shadow-none']
+ }
+ },
+ textSize: {
+ base: {
+ input: 'text-base'
+ },
+ large: {
+ input: 'text-2xl'
+ }
+ }
+ }
+});
+export { TextArea };