mirror of
https://github.com/netbirdio/docs.git
synced 2026-04-16 15:36:36 +00:00
168 lines
5.4 KiB
JavaScript
168 lines
5.4 KiB
JavaScript
import Link from 'next/link'
|
|
import { motion, useMotionTemplate, useMotionValue } from 'framer-motion'
|
|
|
|
import { GridPattern } from '@/components/GridPattern'
|
|
import { Heading } from '@/components/Heading'
|
|
import { ChatBubbleIcon } from '@/components/icons/ChatBubbleIcon'
|
|
import { EnvelopeIcon } from '@/components/icons/EnvelopeIcon'
|
|
import { UserIcon } from '@/components/icons/UserIcon'
|
|
import { UsersIcon } from '@/components/icons/UsersIcon'
|
|
|
|
const clients = [
|
|
{
|
|
href: '/client-installation#linux',
|
|
name: 'Linux',
|
|
description:
|
|
'Learn how to install the NetBird client on Linux devices.',
|
|
icon: UserIcon,
|
|
pattern: {
|
|
y: 16,
|
|
squares: [
|
|
[0, 1],
|
|
[1, 3],
|
|
],
|
|
},
|
|
},
|
|
{
|
|
href: '/client-installation#mac-os',
|
|
name: 'MacOS',
|
|
description:
|
|
'Learn how to install the NetBird client on MacOS devices.',
|
|
icon: ChatBubbleIcon,
|
|
pattern: {
|
|
y: -6,
|
|
squares: [
|
|
[-1, 2],
|
|
[1, 3],
|
|
],
|
|
},
|
|
},
|
|
{
|
|
href: '/client-installation#windows',
|
|
name: 'Windows',
|
|
description:
|
|
'Learn how to install the NetBird client on Windows devices.',
|
|
icon: EnvelopeIcon,
|
|
pattern: {
|
|
y: 32,
|
|
squares: [
|
|
[0, 2],
|
|
[1, 4],
|
|
],
|
|
},
|
|
},
|
|
{
|
|
href: '/client-installation#android',
|
|
name: 'Android',
|
|
description:
|
|
'Learn how to install the NetBird client on Android devices.',
|
|
icon: UsersIcon,
|
|
pattern: {
|
|
y: 22,
|
|
squares: [[0, 1]],
|
|
},
|
|
},
|
|
{
|
|
href: '/client-installation#ios',
|
|
name: 'iOS',
|
|
description:
|
|
'Learn how to install the NetBird client on OS devices.',
|
|
icon: UsersIcon,
|
|
pattern: {
|
|
y: 22,
|
|
squares: [[0, 1]],
|
|
},
|
|
},
|
|
]
|
|
|
|
function ClientIcon({ icon: Icon }) {
|
|
return (
|
|
<div className="flex h-7 w-7 items-center justify-center rounded-full bg-zinc-900/5 ring-1 ring-zinc-900/25 backdrop-blur-[2px] transition duration-300 group-hover:bg-white/50 group-hover:ring-zinc-900/25 dark:bg-white/7.5 dark:ring-white/15 dark:group-hover:bg-orange-300/10 dark:group-hover:ring-orange-400">
|
|
<Icon className="h-5 w-5 fill-zinc-700/10 stroke-zinc-700 transition-colors duration-300 group-hover:stroke-zinc-900 dark:fill-white/10 dark:stroke-zinc-400 dark:group-hover:fill-orange-300/10 dark:group-hover:stroke-orange-400" />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function ClientPattern({ mouseX, mouseY, ...gridProps }) {
|
|
let maskImage = useMotionTemplate`radial-gradient(180px at ${mouseX}px ${mouseY}px, white, transparent)`
|
|
let style = { maskImage, WebkitMaskImage: maskImage }
|
|
|
|
return (
|
|
<div className="pointer-events-none">
|
|
<div className="absolute inset-0 rounded-2xl transition duration-300 [mask-image:linear-gradient(white,transparent)] group-hover:opacity-50">
|
|
<GridPattern
|
|
width={72}
|
|
height={56}
|
|
x="50%"
|
|
className="absolute inset-x-0 inset-y-[-30%] h-[160%] w-full skew-y-[-18deg] fill-black/[0.02] stroke-black/5 dark:fill-white/1 dark:stroke-white/2.5"
|
|
{...gridProps}
|
|
/>
|
|
</div>
|
|
<motion.div
|
|
className="absolute inset-0 rounded-2xl bg-gradient-to-r from-[#FFAC1C] to-[#F28C28] opacity-0 transition duration-300 group-hover:opacity-30 dark:group-hover:opacity-60 dark:from-[#F28C28]/30 dark:to-[#FF7518]/30"
|
|
style={style}
|
|
/>
|
|
<motion.div
|
|
className="absolute inset-0 rounded-2xl opacity-0 mix-blend-overlay transition duration-300 group-hover:opacity-100"
|
|
style={style}
|
|
>
|
|
<GridPattern
|
|
width={72}
|
|
height={56}
|
|
x="50%"
|
|
className="absolute inset-x-0 inset-y-[-30%] h-[160%] w-full skew-y-[-18deg] fill-black/50 stroke-black/70 dark:fill-white/2.5 dark:stroke-white/10"
|
|
{...gridProps}
|
|
/>
|
|
</motion.div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function Client({ client }) {
|
|
let mouseX = useMotionValue(0)
|
|
let mouseY = useMotionValue(0)
|
|
|
|
function onMouseMove({ currentTarget, clientX, clientY }) {
|
|
let { left, top } = currentTarget.getBoundingClientRect()
|
|
mouseX.set(clientX - left)
|
|
mouseY.set(clientY - top)
|
|
}
|
|
|
|
return (
|
|
<div
|
|
key={client.href}
|
|
onMouseMove={onMouseMove}
|
|
className="group relative flex rounded-2xl bg-zinc-50 transition-shadow hover:shadow-md hover:shadow-zinc-900/5 dark:bg-white/2.5 dark:hover:shadow-black/5"
|
|
>
|
|
<ClientPattern {...client.pattern} mouseX={mouseX} mouseY={mouseY} />
|
|
<div className="absolute inset-0 rounded-2xl ring-1 ring-inset ring-zinc-900/7.5 group-hover:ring-zinc-900/10 dark:ring-white/10 dark:group-hover:ring-white/20" />
|
|
<div className="relative rounded-2xl px-4 pb-4 pt-16">
|
|
<h3 className="mt-4 text-sm font-semibold leading-7 text-zinc-900 dark:text-white">
|
|
<Link href={client.href}>
|
|
<span className="absolute inset-0 rounded-2xl" />
|
|
{client.name}
|
|
</Link>
|
|
</h3>
|
|
<p className="mt-1 text-sm text-zinc-600 dark:text-zinc-400">
|
|
{client.description}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export function Clients() {
|
|
return (
|
|
<div className="my-16 xl:max-w-none">
|
|
<Heading level={2} id="clients">
|
|
Clients
|
|
</Heading>
|
|
<div className="not-prose mt-4 grid grid-cols-1 gap-8 border-t border-zinc-900/5 pt-10 dark:border-white/5 sm:grid-cols-2 xl:grid-cols-4">
|
|
{clients.map((client) => (
|
|
<Client key={client.href} client={client} />
|
|
))}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|