Merge pull request #6640 from menloresearch/enhancement/social-media-web
enhancement: social media navbar and update menu footer
This commit is contained in:
commit
75dee86375
@ -16,7 +16,10 @@ const FOOTER_MENUS: FooterMenu[] = [
|
|||||||
{
|
{
|
||||||
title: 'Company',
|
title: 'Company',
|
||||||
links: [
|
links: [
|
||||||
{ name: 'Vision', href: '/', comingSoon: true },
|
{
|
||||||
|
name: 'Open Superintelligence',
|
||||||
|
href: '/handbook/why/open-superintelligence',
|
||||||
|
},
|
||||||
{ name: 'Handbook', href: '/handbook' },
|
{ name: 'Handbook', href: '/handbook' },
|
||||||
{ name: 'Community', href: 'https://discord.com/invite/FTk2MvZwJH' },
|
{ name: 'Community', href: 'https://discord.com/invite/FTk2MvZwJH' },
|
||||||
{ name: 'Careers', href: 'https://menlo.bamboohr.com/careers' },
|
{ name: 'Careers', href: 'https://menlo.bamboohr.com/careers' },
|
||||||
|
|||||||
@ -4,7 +4,7 @@ import { useRouter } from 'next/router'
|
|||||||
import { cn } from '@/lib/utils'
|
import { cn } from '@/lib/utils'
|
||||||
import { FaDiscord, FaGithub } from 'react-icons/fa'
|
import { FaDiscord, FaGithub } from 'react-icons/fa'
|
||||||
import { FiDownload } from 'react-icons/fi'
|
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 { Button } from './ui/button'
|
||||||
import LogoJanSVG from '@/assets/icons/logo-jan.svg'
|
import LogoJanSVG from '@/assets/icons/logo-jan.svg'
|
||||||
|
|
||||||
@ -113,6 +113,43 @@ const Navbar = ({ noScroll }: { noScroll?: boolean }) => {
|
|||||||
</Button>
|
</Button>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</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="https://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>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
@ -232,6 +269,14 @@ const Navbar = ({ noScroll }: { noScroll?: boolean }) => {
|
|||||||
>
|
>
|
||||||
<FaXTwitter className="size-5" />
|
<FaXTwitter className="size-5" />
|
||||||
</a>
|
</a>
|
||||||
|
<a
|
||||||
|
href="https://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
|
<a
|
||||||
href="https://github.com/menloresearch/jan"
|
href="https://github.com/menloresearch/jan"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user