reanimate Switches

This commit is contained in:
Gavin McDonald
2025-07-03 09:11:30 -04:00
parent 0ed38ee098
commit ed6fef5ef1
8 changed files with 215 additions and 163 deletions

View File

@@ -0,0 +1,16 @@
'use client';
import { useAppContext } from '@/app/AppContext';
import BuyMeACoffee from '@/components/BuyMeACoffee';
import GitHubButton from '@/components/GitHubButton';
export default function CardStyle() {
const { isDM } = useAppContext();
return (
<span className={`w-full flex flex-row ${isDM ? 'justify-evenly' : 'justify-between'}`}>
<GitHubButton className="h-[35px] w-[125px]" />
<BuyMeACoffee className="h-[35px] w-[125px]" />
</span>
);
}