Aidan 56603e7e99
All checks were successful
Build and Push Nightly CI Image / build_and_push (push) Successful in 1m47s
Build and Push Docker Image / build_and_push (push) Successful in 3s
i don't even know at this point (3 billion changes to build the first release)
2025-02-16 15:28:17 -05:00

65 lines
2.8 KiB
TypeScript

import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"
import Link from "next/link";
import {ArrowDownToLine, BadgeDollarSign, HeartHandshake} from "lucide-react";
export const GitTab = () => (
<div className="grid gap-6 md:grid-cols-2 lg:grid-cols-3">
<Card className="col-span-full md:col-span-1">
<CardHeader>
<CardTitle>Mobile Clients</CardTitle>
<CardDescription>Manage your Git account from your mobile device!</CardDescription>
</CardHeader>
<CardContent>
<ul>
<li className="mb-2">
<Link href="https://gitnex.com/" target="_blank" rel="noopener noreferrer">
<ArrowDownToLine className="inline-block w-4 h-4 mr-2 -mt-1" />
</Link>
<HeartHandshake className="inline-block w-4 h-4 mr-2 -mt-1" />
<span className="font-semibold">GitNex</span>
</li>
</ul>
</CardContent>
</Card>
<Card className="col-span-full md:col-span-1">
<CardHeader>
<CardTitle>Desktop Clients</CardTitle>
<CardDescription>Use the full suite of Git tools from the command line!</CardDescription>
</CardHeader>
<CardContent>
<ul>
<li className="mb-2">
<Link href="https://git-scm.com/downloads/linux" target="_blank" rel="noopener noreferrer">
<ArrowDownToLine className="inline-block w-4 h-4 mr-2 -mt-1" />
</Link>
<HeartHandshake className="inline-block w-4 h-4 mr-2 -mt-1" />
<span className="font-semibold">Git for Linux (CLI)</span>
</li>
<li className="mb-2">
<Link href="https://git-scm.com/downloads/win" target="_blank" rel="noopener noreferrer">
<ArrowDownToLine className="inline-block w-4 h-4 mr-2 -mt-1" />
</Link>
<HeartHandshake className="inline-block w-4 h-4 mr-2 -mt-1" />
<span className="font-semibold">Git for Windows (CLI)</span>
</li>
<li className="mb-2">
<Link href="https://git-scm.com/downloads/mac" target="_blank" rel="noopener noreferrer">
<ArrowDownToLine className="inline-block w-4 h-4 mr-2 -mt-1" />
</Link>
<HeartHandshake className="inline-block w-4 h-4 mr-2 -mt-1" />
<span className="font-semibold">Git for Mac (CLI)</span>
</li>
<li className="mb-2">
<Link href="https://www.gitkraken.com/git-client" target="_blank" rel="noopener noreferrer">
<ArrowDownToLine className="inline-block w-4 h-4 mr-2 -mt-1" />
</Link>
<BadgeDollarSign className="inline-block w-4 h-4 mr-2 -mt-1 text-orange-400" />
<span className="font-semibold">GitKraken Desktop (GUI)</span>
</li>
</ul>
</CardContent>
</Card>
</div>
)