finish cleaning up home screen

This commit is contained in:
2026-01-13 14:43:35 -06:00
parent 70273af0d9
commit 8f71a22d2b
2 changed files with 8 additions and 21 deletions

View File

@@ -15,23 +15,6 @@ export function CTA() {
Clone the repository and start building your next project with Clone the repository and start building your next project with
everything pre-configured. everything pre-configured.
</p> </p>
<div className="flex flex-col justify-center gap-3 sm:flex-row">
<Button size="lg" variant="outline" asChild>
<Link
href="https://git.gbrown.org/gib/convex-monorepo"
target="_blank"
rel="noopener noreferrer"
>
<Image
src='/misc/gitea/gitea.svg'
alt='Gitea'
width={20}
height={20}
/>
View Source Code
</Link>
</Button>
</div>
{/* Quick Start Command */} {/* Quick Start Command */}
<div className="mt-12"> <div className="mt-12">

View File

@@ -1,4 +1,5 @@
import Link from 'next/link'; import Link from 'next/link';
import Image from 'next/image';
import { Button } from '@gib/ui/button'; import { Button } from '@gib/ui/button';
import { Kanit } from 'next/font/google'; import { Kanit } from 'next/font/google';
@@ -34,16 +35,19 @@ export function Hero() {
{/* CTA Buttons */} {/* CTA Buttons */}
<div className="flex flex-col gap-3 sm:flex-row"> <div className="flex flex-col gap-3 sm:flex-row">
<Button size="lg" asChild>
<Link href="/sign-in">Get Started</Link>
</Button>
<Button size="lg" variant="outline" asChild> <Button size="lg" variant="outline" asChild>
<Link <Link
href="https://git.gbrown.org/gib/convex-monorepo" href="https://git.gbrown.org/gib/convex-monorepo"
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
> >
View on Git <Image
src='/misc/gitea/gitea.svg'
alt='Gitea'
width={20}
height={20}
/>
View Source Code
</Link> </Link>
</Button> </Button>
</div> </div>