-
Notifications
You must be signed in to change notification settings - Fork 207
Clicking logo on /pricing to homepage-fixed #350
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -78,16 +78,18 @@ const Navbar = () => { | |||||
| > | ||||||
| {isOpen ? <X size={28} /> : <Menu size={28} />} | ||||||
| </button> | ||||||
| <div className="text-xl md:text-2xl font-medium tracking-tighter flex items-center gap-2"> | ||||||
| <div className="w-8 md:w-10 aspect-square overflow-hidden relative"> | ||||||
| <Image | ||||||
| src="/assets/logo.svg" | ||||||
| alt="background" | ||||||
| fill | ||||||
| className="object-cover w-full h-full" | ||||||
| /> | ||||||
| </div> | ||||||
| <span>Opensox AI</span> | ||||||
| <div > | ||||||
| <Link href="/dashboard/home" className="text-xl md:text-2xl font-medium tracking-tighter flex items-center gap-2"> | ||||||
| <div className="w-8 md:w-10 aspect-square overflow-hidden relative"> | ||||||
| <Image | ||||||
| src="/assets/logo.svg" | ||||||
| alt="background" | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. use meaningful alt text for the brand image Line 86 uses proposed fix- alt="background"
+ alt="Opensox logo"As per coding guidelines, "Provide alt text for images". 📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| fill | ||||||
| className="object-cover w-full h-full cursor-pointer" | ||||||
| /> | ||||||
| </div> | ||||||
| <span>Opensox AI</span> | ||||||
| </Link> | ||||||
| </div> | ||||||
| </div> | ||||||
| <div className="hidden min-[1115px]:flex items-center gap-5 max-[1270px]:gap-4 max-[1173px]:gap-3 tracking-tight text-lg max-[1270px]:text-base max-[1173px]:text-sm font-light max-[1173px]:font-normal text-[#d1d1d1]"> | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
logo link target does not match the stated fix
Line 82 routes to
/dashboard/home, but the PR objective says clicking the logo on/pricingshould go to homepage. If homepage is the landing root, this should be/.proposed fix
📝 Committable suggestion
🤖 Prompt for AI Agents