17 lines
467 B
TypeScript
17 lines
467 B
TypeScript
'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>
|
|
);
|
|
}
|