Skip to content

Commit 4675b01

Browse files
committed
Update hero pill + grayscale used
1 parent 2a04374 commit 4675b01

3 files changed

Lines changed: 13 additions & 10 deletions

File tree

app/(main)/page.tsx

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -57,44 +57,47 @@ export default function Home() {
5757
</div>
5858

5959
<div className="isolate flex h-full grow flex-col">
60-
<header className="relative mx-auto flex w-full shrink-0 items-center justify-center py-5">
60+
<header className="relative mx-auto flex w-full shrink-0 items-center justify-center py-6">
6161
<Image
6262
src={logo}
6363
alt=""
6464
quality={100}
65-
className="mx-auto h-8 w-auto"
65+
className="mx-auto h-9 w-auto"
6666
priority
6767
/>
6868
<div className="absolute right-3">
6969
<a
7070
href="https://github.com/nutlope/llamacoder"
7171
target="_blank"
72-
className="ml-auto hidden items-center gap-3 rounded-2xl bg-white px-6 py-2 sm:flex"
72+
className="ml-auto hidden items-center gap-3 rounded-2xl bg-white px-6 py-2 shadow sm:flex"
7373
>
7474
<GithubIcon className="h-4 w-4" />
7575
<span>GitHub Repo</span>
7676
</a>
7777
</div>
7878
</header>
7979

80-
<div className="mt-16 flex grow flex-col items-center px-4 lg:mt-24">
80+
<div className="mt-10 flex grow flex-col items-center px-4 lg:mt-16">
8181
<a
82-
className="mb-4 inline-flex h-7 shrink-0 items-center gap-[9px] rounded-[50px] border-[0.5px] border-solid border-[#E6E6E6] bg-gray-50 px-7 py-5 shadow-[0px_1px_1px_0px_rgba(0,0,0,0.25)]"
82+
className="mb-4 inline-flex shrink-0 items-center rounded-full border-[0.5px] bg-white px-7 py-2 text-xs text-gray-800 shadow-[0px_1px_1px_0px_rgba(0,0,0,0.25)] md:text-base"
8383
href="https://dub.sh/together-ai/?utm_source=example-app&utm_medium=llamacoder&utm_campaign=llamacoder-app-signup"
8484
target="_blank"
8585
>
8686
<span className="text-center">
87-
Powered by <span className="font-medium">Llama 3.1</span> and{" "}
88-
<span className="font-medium">Together AI</span>
87+
Powered by <span className="font-semibold">Together AI</span>.
88+
Used by
89+
<span className="font-semibold"> 600k+ users. </span>
8990
</span>
9091
</a>
91-
<h1 className="mt-4 text-balance text-center text-4xl leading-none text-gray-700 md:text-[64px]">
92+
93+
<h1 className="mt-4 text-balance text-center text-4xl leading-none text-gray-700 md:text-[64px] lg:mt-8">
9294
Turn your <span className="text-blue-500">idea</span>
9395
<br className="hidden md:block" /> into an{" "}
9496
<span className="text-blue-500">app</span>
9597
</h1>
98+
9699
<form
97-
className="mt-6"
100+
className="mt-6 lg:mt-12"
98101
action={async (formData) => {
99102
const { prompt, model, quality, shadcn } =
100103
Object.fromEntries(formData);

public/logo.png

8.07 KB
Loading

tailwind.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const config: Config = {
2828
"500": "#326DF5",
2929
"700": "#1F326F",
3030
},
31-
gray: colors.slate,
31+
gray: colors.zinc,
3232
background: "hsl(var(--background))",
3333
foreground: "hsl(var(--foreground))",
3434
card: {

0 commit comments

Comments
 (0)