Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 9 additions & 23 deletions app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import { ArrowRight, Github } from 'lucide-react'
import { ArrowRight } from 'lucide-react'
import Link from 'next/link'

import { Separator } from '@/components/ui/separator'
import { freeToolCategories, freeToolLinks } from '@/lib/free-tools'
import { GARCON_GITHUB_URL } from '@/lib/garcon-links'
import { generatePageMeta } from '@/lib/seo'

export const metadata = generatePageMeta({
Expand All @@ -17,27 +16,14 @@ export default function HomePage() {
return (
<div>
<header className="relative overflow-hidden border-b border-[#EBECF0] bg-white px-4 py-14 sm:px-6 sm:py-20">
<div className="mx-auto grid max-w-6xl gap-8 md:grid-cols-[1fr_280px] md:items-end">
<div className="relative">
<h1 className="type-heading-1 max-w-3xl text-[#0A0C11]">
Tools for better drinks and calmer parties.
</h1>
<p className="type-text-large mt-5 max-w-2xl text-[#5B616D]">
Use every tool without an account, then inspect the calculation
logic and tests on GitHub.
</p>
</div>
<div className="relative border-l border-[#D9DBE1] pl-5">
<a
href={GARCON_GITHUB_URL}
target="_blank"
rel="noreferrer"
className="type-button inline-flex items-center gap-2 text-[#6635F2] hover:text-[#4D28C2]"
>
<Github aria-hidden="true" className="h-4 w-4" />
Browse the repository
</a>
</div>
<div className="mx-auto max-w-6xl">
<h1 className="type-heading-1 max-w-3xl text-[#0A0C11]">
Tools for better drinks and calmer parties.
</h1>
<p className="type-text-large mt-5 max-w-2xl text-[#5B616D]">
Use every tool without an account, then inspect the calculation
logic and tests on GitHub.
</p>
</div>
</header>

Expand Down
Loading