Faran Butt
commited on
Commit
·
f956125
1
Parent(s):
47d64b3
Updating Search page
Browse files- src/pages/Search.tsx +10 -2
src/pages/Search.tsx
CHANGED
@@ -1,7 +1,15 @@
|
|
|
|
1 |
export default function Search(){
|
2 |
return(
|
3 |
-
<div>
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
</div>
|
6 |
)
|
7 |
}
|
|
|
1 |
+
import Link from "next/link"
|
2 |
export default function Search(){
|
3 |
return(
|
4 |
+
<div className="w-screen pr-7">
|
5 |
+
<div className='flex justify-end m-10'>
|
6 |
+
<div className='bg-blue-500 text-sm rounded-xl text-white px-4 py-2'>
|
7 |
+
<Link href={'/'}>Upload Document</Link>
|
8 |
+
</div>
|
9 |
+
</div>
|
10 |
+
<div>
|
11 |
+
Search Document
|
12 |
+
</div>
|
13 |
</div>
|
14 |
)
|
15 |
}
|