File tree 2 files changed +10
-5
lines changed
2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 9
9
IoMdMail ,
10
10
IoMdPeople ,
11
11
IoMdSearch ,
12
+ IoIosCall
12
13
} from "react-icons/io" ;
13
14
import Home from "./pages/home" ;
14
15
import CreateQuiz from "./pages/create" ;
@@ -56,8 +57,9 @@ const navItems = [
56
57
{
57
58
name : "CONTACT" ,
58
59
link : "/contact-us" ,
59
- icon : < IoMdSearch className = "h-4 w-4 text-neutral-500 dark:text-white" /> ,
60
- } ,
60
+ icon : < IoIosCall className = "h-4 w-4 text-neutral-500 dark:text-white" /> ,
61
+ }
62
+
61
63
] ;
62
64
63
65
const google_client_id = import . meta. env . VITE_GOOGLE_CLIENT_ID ;
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ export default function FloatingNav({ navItems, className }) {
52
52
) }
53
53
>
54
54
< div className = "w-72 h-full relative" >
55
- < div className = "rounded-full absolute border-green-600 border-solid border-2 top-[50%] translate-y-[-50%] w- 12 h-12" >
55
+ < div className = "rounded-full absolute border-green-600 border-solid border-2 top-[50%] translate-y-[-50%] w-8 h-8 lg:w- 12 lg: h-12" >
56
56
{ " " }
57
57
< div className = "logo" > </ div >
58
58
</ div >
@@ -71,10 +71,13 @@ export default function FloatingNav({ navItems, className }) {
71
71
) ) }
72
72
</ div >
73
73
< div className = "flex w-fit justify-between gap-8 pr-6" >
74
- < button className = "relative text-sm bg-[#cff466] text-black w-fit px-10 py-2 rounded-full" onClick = { ( ) => navigate ( "/explore" ) } >
74
+
75
+
76
+ < button className = "relative text-sm bg-[#cff466] text-black w-fit px-10 py-2 rounded-full hidden lg:flex" onClick = { ( ) => navigate ( "/explore" ) } >
77
+
75
78
< span > EXPLORE</ span >
76
79
</ button >
77
- < button className = "relative text-sm bg-[#cff466] text-black min-w-fit px-10 py-2 rounded-full" onClick = { ( ) => navigate ( "/login" ) } >
80
+ < button className = "relative text-sm bg-[#cff466] text-black min-w-fit px-10 py-2 rounded-full hidden lg:flex " onClick = { ( ) => navigate ( "/login" ) } >
78
81
< span > LOG IN</ span >
79
82
</ button >
80
83
</ div >
You can’t perform that action at this time.
0 commit comments