Files
Tarokka/components/Settings/ExternalLinks.tsx
Gavin McDonald 97b6b66bad Settings tweaks
2025-07-03 14:31:32 -04:00

14 lines
400 B
TypeScript

'use client';
import BuyMeACoffee from '@/components/BuyMeACoffee';
import GitHubButton from '@/components/GitHubButton';
export default function CardStyle({ className }: { className?: string }) {
return (
<span className={`w-full flex flex-row justify-between ${className}`}>
<GitHubButton className="h-[35px] w-[125px]" />
<BuyMeACoffee className="h-[35px] w-[125px]" />
</span>
);
}