Skip to content

Commit f95430f

Browse files
committed
fixed Sign in button color style on mobile devices
1 parent f99ee63 commit f95430f

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

components/Nav.jsx

+6-5
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,15 @@ const Nav = () => {
2020
return (
2121
<nav className="w-full flex-between mb-16 py-4">
2222
<Link href="/" className="flex flex-center gap-2 ">
23+
<p className="logo_text">TOP</p>
2324
<Image
2425
className="object-contain"
25-
src="/assets/images/logo.svg"
26+
src="/assets/images/logo.png"
2627
alt="logo"
27-
width={30}
28-
height={30}
28+
width={32}
29+
height={32}
2930
/>
30-
<p className="logo_text">AI PROMTS</p>
31+
<p className="logo_text">PROMPTS</p>
3132
</Link>
3233

3334
{/* Desktop Navigation */}
@@ -118,7 +119,7 @@ const Nav = () => {
118119
{providers &&
119120
Object.values(providers).map((provider) => (
120121
<button
121-
className="black_btn"
122+
className="outline_btn"
122123
type="button"
123124
key={provider.name}
124125
onClick={() => {

0 commit comments

Comments
 (0)