Skip to content

Commit e82a349

Browse files
authored
Merge pull request #2932 from surishubham/testmuCom
Update Navbar links to use relative paths for login and registration
2 parents 1909f67 + 0fe7468 commit e82a349

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/theme/Navbar/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -209,8 +209,8 @@ export default function Navbar() {
209209
<GithubIcon />
210210
<span>Github</span>
211211
</a>
212-
<a href="https://accounts.lambdatest.com/login" className={styles.loginLink}>Login</a>
213-
<a id="signbtn" href="https://accounts.lambdatest.com/register" className={styles.getStartedBtn}>
212+
<a href="/login/" className={styles.loginLink}>Login</a>
213+
<a id="signbtn" href="/register/" className={styles.getStartedBtn}>
214214
<span>Get Started Free</span> <span className={styles.arrow}>&rsaquo;</span>
215215
</a>
216216
<button className={styles.gearBtn} onClick={toggleColorMode} aria-label="Toggle dark mode">
@@ -232,8 +232,8 @@ export default function Navbar() {
232232
<a href="https://github.com/LambdaTest" target="_blank" rel="noopener noreferrer" className={styles.dotsItem}>
233233
<GithubIcon /><span>Github</span>
234234
</a>
235-
<a href="https://accounts.lambdatest.com/login" className={styles.dotsItem}>Login</a>
236-
<a href="https://accounts.lambdatest.com/register" className={`${styles.dotsItem} ${styles.dotsItemCta}`}>Get Started Free</a>
235+
<a href="/login/" className={styles.dotsItem}>Login</a>
236+
<a href="/register/" className={`${styles.dotsItem} ${styles.dotsItemCta}`}>Get Started Free</a>
237237
</div>
238238
)}
239239
</div>

0 commit comments

Comments
 (0)