Skip to content

Commit

Permalink
Merge pull request #76 from AndyOooh/fix-landing-links
Browse files Browse the repository at this point in the history
Fix landing links
  • Loading branch information
AndyOooh authored Feb 5, 2024
2 parents 6185ea1 + a1211f3 commit ad60aea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/app/src/app/(public)/(auth)/signup/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function Signup() {
</Link>
<br />
Or as{' '}
<Link href={'/signup/freelancer'} className='link link-primary'>
<Link href={'/signup/business'} className='link link-primary'>
Businesss?
</Link>
</p>
Expand Down
2 changes: 1 addition & 1 deletion apps/landing/src/app/components/Header/HeaderRight.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function HeaderRight() {
<div className='flex gap-2 navbar-end mr-4 md:mr-0'>
<Link
role='button'
href={appUrl}
href={`${appUrl}/signup`}
target='_blank'
className='btn btn-neutral btn-xs md:btn-sm rounded-3xl normal-case'>
Hire Talent
Expand Down
2 changes: 1 addition & 1 deletion apps/landing/src/app/components/Hero/HeroLeft.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const HeroLeft = () => {
<div className='divider' />
{/* add endpoint to this link: signup/company */}
<a
href={`${appUrl}`}
href={`${appUrl}/signup`}
className='btn btn-neutral hover:text-accent-content hover:bg-gradient-to-tr from-accent/80 to-primary hover:border-none'>
Get Started
</a>
Expand Down

0 comments on commit ad60aea

Please sign in to comment.