Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/app/(home)/components/frameworks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ export const Frameworks = () => {
with the frameworks you already use with more coming soon.
</h2>
</div>
<div className="grid grid-cols-4 gap-3 items-center">
<div className="grid grid-cols-4 gap-2 items-center w-fit">
<div className="col-span-4 w-full">
<Badge
variant="secondary"
Expand Down
8 changes: 4 additions & 4 deletions docs/app/(home)/components/observability.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const Observability = () => (
logs, and metrics automatically.
</h2>
<div className="">
<div className="space-y-3 w-full">
<div className="space-y-2.5 w-full">
{rows.map((row, index) => (
<div
key={row.label}
Expand All @@ -66,7 +66,7 @@ export const Observability = () => (
width: `${row.duration}%`,
}}
>
<div className="relative h-6 w-full">
<div className="relative h-6.5 w-full">
<motion.div
initial={{ width: 0, opacity: 0 }}
whileInView={{ width: 'auto', opacity: 1 }}
Expand All @@ -81,8 +81,8 @@ export const Observability = () => (
row.className
)}
>
<div className="flex justify-between items-center px-2 py-[4px]">
<span className="text-[11px] font-mono font-medium">
<div className="flex justify-between items-center px-2 pt-1 pb-[6px]">
<span className="text-[11px] font-mono font-medium text-foreground">
{row.label}
</span>
{index === 0 && (
Expand Down
Binary file modified docs/app/opengraph-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions docs/components/layout/home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export function HomeLayout(
<Link href="https://vercel.com">
<svg
fill="none"
height="24"
height="20"
viewBox="0 0 2048 407"
xmlns="http://www.w3.org/2000/svg"
>
Expand Down Expand Up @@ -208,7 +208,7 @@ export function Header({
<NavbarLinkItem item={item} key={i} />
))}
</div>
<Button asChild size="icon" variant="ghost" className="h-9">
<Button asChild size="sm" variant="default">
<Link href="https://github.com/vercel/workflow">
<svg
width="15"
Expand All @@ -224,6 +224,7 @@ export function Header({
clipRule="evenodd"
></path>
</svg>
GitHub
</Link>
</Button>
</div>
Expand Down