Skip to content

Commit

Permalink
Update Navbar Links (#8)
Browse files Browse the repository at this point in the history
Co-authored-by: Luc <[email protected]>
  • Loading branch information
Jontes-Tech and lucemans authored May 12, 2024
1 parent 7775bd0 commit e4f87e1
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions components/NavBar/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { FC } from 'react';

export const NavBar: FC = () => {
return (
<header className="lg:absolute lg:left-0 w-auto p-8 flex flex-col gap-4 max-w-xs">
<header className="2xl:absolute 2xl:left-0 w-auto p-8 flex flex-col gap-4 max-w-xs">
<div className="flex flex-col justify-center whitespace-nowrap">
<div className="bg-notblack w-fit font-bold">
<span className="text-white -1 mx-3">v3xlabs</span>
Expand All @@ -13,13 +13,11 @@ export const NavBar: FC = () => {
<ul className="">
{[
['.company', 'https://v3x.company'],
['.contact', 'https://v3x.contact'],
['.domains', 'https://v3x.domains'],
['.health', 'https://v3x.health'],
['.store', 'https://v3x.store'],
['.team', 'https://v3x.team'],
['.chat', 'https://v3x.chat'],
['.wiki', 'https://v3x.wiki'],
// ['.chat', 'https://v3x.chat'],
['.vc', 'https://v3x.vc'],
].map(([label, href]) => (
<li key={label}>
Expand Down

0 comments on commit e4f87e1

Please sign in to comment.