enhancement: social media navbar and update menu footer
This commit is contained in:
parent
4d5cc0033a
commit
f73e1c4618
@ -16,7 +16,10 @@ const FOOTER_MENUS: FooterMenu[] = [
|
||||
{
|
||||
title: 'Company',
|
||||
links: [
|
||||
{ name: 'Vision', href: '/', comingSoon: true },
|
||||
{
|
||||
name: 'Open Superintelligence',
|
||||
href: '/handbook/why/open-superintelligence',
|
||||
},
|
||||
{ name: 'Handbook', href: '/handbook' },
|
||||
{ name: 'Community', href: 'https://discord.com/invite/FTk2MvZwJH' },
|
||||
{ name: 'Careers', href: 'https://menlo.bamboohr.com/careers' },
|
||||
|
||||
@ -4,7 +4,7 @@ import { useRouter } from 'next/router'
|
||||
import { cn } from '@/lib/utils'
|
||||
import { FaDiscord, FaGithub } from 'react-icons/fa'
|
||||
import { FiDownload } from 'react-icons/fi'
|
||||
import { FaXTwitter } from 'react-icons/fa6'
|
||||
import { FaXTwitter, FaLinkedinIn } from 'react-icons/fa6'
|
||||
import { Button } from './ui/button'
|
||||
import LogoJanSVG from '@/assets/icons/logo-jan.svg'
|
||||
|
||||
@ -113,6 +113,43 @@ const Navbar = ({ noScroll }: { noScroll?: boolean }) => {
|
||||
</Button>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<div className={cn('flex gap-4', !isLanding && '!text-black')}>
|
||||
<a
|
||||
href="https://discord.com/invite/FTk2MvZwJH"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="rounded-lg flex items-center justify-center"
|
||||
>
|
||||
<FaDiscord className="size-5" />
|
||||
</a>
|
||||
<a
|
||||
href="https://twitter.com/jandotai"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="rounded-lg flex items-center justify-center"
|
||||
>
|
||||
<FaXTwitter className="size-5" />
|
||||
</a>
|
||||
<a
|
||||
href="http://linkedin.com/company/opensuperintelligence"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="rounded-lg flex items-center justify-center"
|
||||
>
|
||||
<FaLinkedinIn className="size-5" />
|
||||
</a>
|
||||
<a
|
||||
href="https://github.com/menloresearch/jan"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="rounded-lg flex items-center justify-center"
|
||||
>
|
||||
<FaGithub className="size-5" />
|
||||
</a>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
@ -232,6 +269,14 @@ const Navbar = ({ noScroll }: { noScroll?: boolean }) => {
|
||||
>
|
||||
<FaXTwitter className="size-5" />
|
||||
</a>
|
||||
<a
|
||||
href="http://linkedin.com/company/opensuperintelligence"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="text-black rounded-lg flex items-center justify-center"
|
||||
>
|
||||
<FaLinkedinIn className="size-5" />
|
||||
</a>
|
||||
<a
|
||||
href="https://github.com/menloresearch/jan"
|
||||
target="_blank"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user