Footer Header links updates

This commit is contained in:
Ekiserrepé
2025-11-12 07:03:26 +01:00
parent 4e7d741549
commit 2ef17af47d
2 changed files with 6 additions and 16 deletions

View File

@@ -15,8 +15,6 @@ import logo from '../assets/xahau-logo.svg'
<a href="/features">Features</a>
<a href="/ecosystem">Ecosystem</a>
<a href="/roadmap">Roadmap</a>
<a href="/connect">Events</a>
<a href="/contest">Dev Contest</a>
<a href="/docs/compliance/responsible-disclosure">Break Xahau</a>
<a href="/fraud-report">Report Fraud</a>
<a href="/docs/resources/media-kit">Media kit</a>
@@ -33,6 +31,8 @@ import logo from '../assets/xahau-logo.svg'
</div>
<div class="col-span-1 md:col-span-2 flex flex-col gap-3">
<p><strong>Connect</strong></p>
<a href="/connect">Events</a>
<a href="/contest">Dev Contest</a>
<a href="https://x.com/XahauNetwork" target="_blank">X</a>
<a href="https://github.com/Xahau" target="_blank">GitHub</a>
<a href="https://discord.com/invite/UzU58haAn4" target="_blank">Community Discord</a>

View File

@@ -19,6 +19,8 @@ import {
import { useState } from 'react'
const socials = [
{ name: 'Events', href: '/connect' },
{ name: 'Dev Contest', href: '/contest' },
{ name: 'X', href: 'https://x.com/XahauNetwork' },
{ name: 'GitHub', href: 'https://github.com/Xahau' },
{ name: 'Community Discord', href: 'https://discord.com/invite/UzU58haAn4' },
@@ -86,12 +88,6 @@ export default function Header(props) {
>
Ecosystem
</a>
<a
href="/connect"
className={`selected:no-underline no-underline text-base text-black ${props.url.pathname.slice(1).split('/')[0] === 'events' ? 'font-bold' : 'font-regular'}`}
>
Events
</a>
<a
href="/roadmap"
className={`selected:no-underline no-underline text-base text-black ${props.url.pathname.slice(1).split('/')[0] === 'roadmap' ? 'font-bold' : 'font-regular'}`}
@@ -132,7 +128,7 @@ export default function Header(props) {
</Popover>
<Popover className="relative">
<PopoverButton className="flex p-0 border-none items-center gap-x-1 text-base font-regular text-black bg-transparent hover:cursor-pointer ">
Socials
Connect
<ChevronDownIcon
aria-hidden="true"
className="size-5 flex-none text-black"
@@ -259,12 +255,6 @@ export default function Header(props) {
>
Ecosystem
</a>
<a
href="/connect"
className={`selected:no-underline no-underline -mx-3 block rounded-lg px-3 py-2 text-base/7 text-base/7 hover:bg-gray-50 text-black ${props.url.pathname.slice(1).split('/')[0] === 'events' ? 'font-bold' : 'font-regular'}`}
>
Events
</a>
<a
href="/roadmap"
className={`selected:no-underline no-underline -mx-3 block rounded-lg px-3 py-2 text-base/7 text-base/7 hover:bg-gray-50 text-black ${props.url.pathname.slice(1).split('/')[0] === 'roadmap' ? 'font-bold' : 'font-regular'}`}
@@ -296,7 +286,7 @@ export default function Header(props) {
</Disclosure>
<Disclosure as="div" className="-mx-3">
<DisclosureButton className="border-none bg-transparent group flex w-full items-center justify-between rounded-lg py-2 pr-3.5 pl-3 text-base/7 font-regular text-black hover:bg-gray-50">
Socials
Connect
<ChevronDownIcon
aria-hidden="true"
className="size-5 flex-none group-data-open:rotate-180"