'use client';
import NextLink from 'next/link';
import { ReactNode } from 'react';
import { usePathname } from 'next/navigation';
const tags = [
{
name: '#WebGPU',
href: 'https://tympanus.net/codrops/demos/?tag=webgpu',
},
{
name: '#Three.js',
href: 'https://tympanus.net/codrops/demos/?tag=three-js',
},
{
name: '#TSL',
href: 'https://tympanus.net/codrops/demos/?tag=tsl',
},
];
const Link = ({
href,
target,
className,
children,
}: {
href: string;
children: ReactNode;
className?: string;
target?: string;
}) => {
return (