Skip to content

Commit e3afbe4

Browse files
committed
Update Header.jsx
1 parent 9103be5 commit e3afbe4

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/components/Header.jsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import React from 'react';
44
import Link from 'next/link';
55
import { IconBrandGithub } from "@tabler/icons-react";
66

7-
const MobileNavLink = ({ href, children }) => (
7+
const MobileNavLink = ({ href, children }: { href: string; children: React.ReactNode }) => (
88
<Link
99
href={href}
1010
className="block px-3 py-2 text-base font-medium text-neutral-300 hover:text-white hover:bg-neutral-800 rounded-md transition-colors"
@@ -21,7 +21,7 @@ export const Header = () => {
2121
<div className="container mx-auto px-4">
2222
<div className="flex items-center justify-between h-16">
2323
{/* Logo and Brand */}
24-
<Link href="/">
24+
<Link href="https://horizon.farbeyond.dev/">
2525
<div className="flex items-center gap-2">
2626
<img src="https://github.com/Far-Beyond-Dev/Horizon-Community-Edition/blob/main/branding/horizon-server-high-resolution-logo-white-transparent.png?raw=true" className='w-52'></img>
2727
</div>
@@ -30,19 +30,19 @@ export const Header = () => {
3030
{/* Navigation Links - Desktop */}
3131
<div className="hidden md:flex items-center gap-8">
3232

33-
<Link href="/community" className="text-neutral-300 hover:text-neutral-100 transition-colors">
33+
<Link href="https://horizon.farbeyond.dev/community" className="text-neutral-300 hover:text-neutral-100 transition-colors">
3434
Community
3535
</Link>
36-
<Link href="/enterprise" className="text-neutral-300 hover:text-neutral-100 transition-colors">
36+
<Link href="https://horizon.farbeyond.dev/enterprise" className="text-neutral-300 hover:text-neutral-100 transition-colors">
3737
Enterprise
3838
</Link>
39-
<Link href="/docs" className="text-neutral-300 hover:text-neutral-100 transition-colors">
39+
<Link href="https://horizon.farbeyond.dev/docs" className="text-neutral-300 hover:text-neutral-100 transition-colors">
4040
Documentation
4141
</Link>
42-
<Link href="/news" className="text-neutral-300 hover:text-neutral-100 transition-colors">
42+
<Link href="https://horizon.farbeyond.dev/news" className="text-neutral-300 hover:text-neutral-100 transition-colors">
4343
News
4444
</Link>
45-
<Link href="/blog" className="text-neutral-300 hover:text-neutral-100 transition-colors">
45+
<Link href="https://horizon.farbeyond.dev/blog" className="text-neutral-300 hover:text-neutral-100 transition-colors">
4646
Blog
4747
</Link>
4848
<Link href="https://pulsar.farbeyond.dev/" className="text-neutral-300 hover:text-neutral-100 transition-colors">

0 commit comments

Comments
 (0)