File size: 1,174 Bytes
dabd32e
 
 
f956125
baedf33
 
f956125
 
 
 
 
 
dabd32e
 
 
 
 
 
 
 
 
 
f956125
baedf33
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { Button } from "@/components/ui/button"
import { Input } from "@/components/ui/input"
import { Textarea } from "@/components/ui/textarea"
import Link from "next/link"
export default function Search(){
    return(
        <div className="w-screen pr-7">
            <div className='flex justify-end m-10'>
                <div className='bg-blue-500 text-sm rounded-xl text-white px-4 py-2'>
                    <Link href={'/'}>Upload Document</Link>
                </div>
            </div>
            <div className="flex flex-col items-center justify-center gap-5">
                <div className="text-5xl font-bold text-gray-400">Search <span className="text-blue-500">Document</span></div>
                <div className="flex gap-4">
                    <Input type="search" className="w-80"/>
                    <Button className="border-2 border-blue-500 bg-white text-blue-500 font-bold hover:text-white hover:bg-blue-500">Search</Button>
                    
                </div>
                <div>
                    <Textarea placeholder="Response." disabled rows={5} cols={50}/>
                </div>
            </div>
        </div>
    )
}