Skip to content

Commit

Permalink
fix merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
a-hariti committed Aug 19, 2024
1 parent 9fefba3 commit fb0315d
Showing 1 changed file with 10 additions and 14 deletions.
24 changes: 10 additions & 14 deletions src/components/header.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use client';

import {useEffect, useState} from 'react';
import {Fragment, useEffect, useState} from 'react';
import {HamburgerMenuIcon} from '@radix-ui/react-icons';
import Image from 'next/image';
import Link from 'next/link';
Expand Down Expand Up @@ -102,23 +102,19 @@ export function Header({pathname, searchPlatforms, noSearch}: Props) {
<div className="hidden lg:flex justify-end flex-1 space-x-2 items-center">
<NavLink href="https://sentry.io/changelog/">Changelog</NavLink>
<NavLink href="https://try.sentry-demo.com/demo/start/">Sandbox</NavLink>
<<<<<<< Updated upstream
<NavLink href="https://sentry.io/">Sign In</NavLink>
<NavLink
href="https://sentry.io/signup/"
className="transition-all duration-300 ease-in-out hover:bg-gradient-to-r hover:from-[#fa7faa] hover:via-[#ff9691] hover:to-[#ffb287]"
>
Get Started
</NavLink>
||||||| Stash base
<NavLink href="https://sentry.io/">Sign In</NavLink>
=======
{user ? (
<Avatar user={user} />
) : (
<NavLink href="https://sentry.io/">Sign In</NavLink>
<Fragment>
<NavLink href="https://sentry.io/">Sign In</NavLink>
<NavLink
href="https://sentry.io/signup/"
className="transition-all duration-300 ease-in-out hover:bg-gradient-to-r hover:from-[#fa7faa] hover:via-[#ff9691] hover:to-[#ffb287]"
>
Get Started
</NavLink>
</Fragment>
)}
>>>>>>> Stashed changes
</div>
<div className="lg:hidden ml-auto">
<MobileMenu pathname={pathname} searchPlatforms={searchPlatforms} />
Expand Down

0 comments on commit fb0315d

Please sign in to comment.