Skip to content

Commit

Permalink
refactor: replace header
Browse files Browse the repository at this point in the history
  • Loading branch information
danstarns committed Aug 21, 2023
1 parent ead62fc commit c64a48f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions frontend/src/components/views/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,13 +135,6 @@ export function Header() {
<NavItem href="#contact">Contact</NavItem>
{!isSafari ? (
<>
<DropdownItem title="Socials">
{socials.map((social) => (
<NavItem key={social.text} href={social.url}>
{social.text}
</NavItem>
))}
</DropdownItem>
<DropdownItem title="Services">
{services.map((service) => (
<NavItem
Expand All @@ -152,6 +145,13 @@ export function Header() {
</NavItem>
))}
</DropdownItem>
<DropdownItem title="Socials">
{socials.map((social) => (
<NavItem key={social.text} href={social.url}>
{social.text}
</NavItem>
))}
</DropdownItem>
</>
) : (
<NavItem href="#services">Services</NavItem>
Expand Down

0 comments on commit c64a48f

Please sign in to comment.