import Head from "next/head"; import Link from "next/link"; import { useState } from "react"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; export default function Home() { const [file,setFile] = useState(null); const [result,setResult] = useState(''); const handleFileChange = (event:any) => { setFile(event.target.files[0]); } return ( <> Here.Chat
Search Document

Here .Chat

TXT, DOCX, PPTX, JPG, PNG, HTML or PDF

); }