-
Notifications
You must be signed in to change notification settings - Fork 24
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
build: Update to Next 13 #490
Conversation
38707b4
to
a7edb0a
Compare
This pull request is being automatically deployed to Netlify. |
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.
This pull request is being automatically deployed to Netlify. |
className={enabled ? "opacity-100" : "opacity-50"} | ||
className={`group relative cursor-pointer ${ | ||
enabled ? "opacity-100" : "opacity-50" | ||
}`} | ||
passHref |
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.
I think this passHref is no longer needed
@@ -98,13 +98,11 @@ export default function ResetPasswordForm() { | |||
</p> | |||
<div className="w-96"> | |||
<Link href="/login" passHref> |
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.
Here as well
components/Base/index.jsx
Outdated
: "text-white hover:bg-primary hover:bg-opacity-50", | ||
"group flex items-center border-b-2 border-tertiary border-opacity-50 px-8 py-8 font-ibold text-xs" | ||
)} | ||
passHref |
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.
Here
components/Base/index.jsx
Outdated
<Link | ||
key={item} | ||
href={`${baseHref}/${item}`} | ||
passHref |
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.
here
components/Dashboard/index.jsx
Outdated
@@ -142,8 +142,8 @@ export default function Dashboard(props) { | |||
</a> | |||
))} | |||
</nav> | |||
<Link href="/" passHref> | |||
<a className="px-4 font-iregular text-quinary">Log out 👋</a> | |||
<Link href="/" className="px-4 font-iregular text-quinary" passHref> |
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.
here
components/Footer/index.tsx
Outdated
<Link passHref href="/docs/survival.pdf"> | ||
<a className="hover:underline">Survival Guide</a> | ||
<Link | ||
passHref |
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.
here
components/Navbar/index.jsx
Outdated
passHref | ||
> | ||
{item.name} | ||
</Link> | ||
))} | ||
{isAuthenticated ? null : ( | ||
<Link key="login" href="/login" passHref> | ||
<a className="font-iregular text-sm text-white text-opacity-40 hover:text-opacity-100"> | ||
Login | ||
</a> | ||
<Link | ||
key="login" | ||
href="/login" | ||
className="font-iregular text-sm text-white text-opacity-40 hover:text-opacity-100" | ||
passHref |
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.
here
components/Navbar/index.jsx
Outdated
{item.name} | ||
</a> | ||
<Link | ||
passHref |
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.
here
className={enabled ? "opacity-100" : "opacity-50"} | ||
className={`group relative cursor-pointer ${ | ||
enabled ? "opacity-100" : "opacity-50" | ||
}`} | ||
passHref |
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.
here
@@ -98,13 +98,11 @@ export default function ResetPasswordForm() { | |||
</p> | |||
<div className="w-96"> | |||
<Link href="/login" passHref> |
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.
here
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.
Great job! 🚀
3f1983e
to
2aab13d
Compare
✅ Deploy Preview for seium-stg ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
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.
👍
No description provided.