"use client"; import Link from "next/link"; import { useState } from "react"; import { theme } from "tailwind.config"; export default function SortButtons(props: { order: string }) { const [selected, setSelected] = useState<"recentlyUpdated" | "popular">( "recentlyUpdated", ); return (
Recently Updated Popular
); } const SortButton = (props: { children: React.ReactNode; selected: boolean; }) => { return (
{props.selected && ( <>
)}
); }; const GlitterBig = () => { return ( ); }; const GlitterSmall = () => { return ( ); };