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
8 changes: 4 additions & 4 deletions apps/docs/components/homepage/comparizon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { CodeBlock } from "@/components/code-block";

export function Comparizon() {
return (
<>
<div className="max-w-full">
<div className="p-8 md:p-14">
<h2 className="text-center font-bold text-2xl">
First, let&apos;s let the code get the word out...
Expand All @@ -14,7 +14,7 @@ export function Comparizon() {
VS
</span>
<div className="grid md:grid-cols-2 divide-x-px">
<div className="relative flex flex-col">
<div className="relative flex flex-col overflow-x-auto">
<span className="absolute top-1.5 right-3 text-sm text-muted-foreground z-10">
before
</span>
Expand All @@ -31,7 +31,7 @@ export function Comparizon() {
}}
/>
</div>
<div className="relative flex flex-col">
<div className="relative flex flex-col overflow-x-auto">
<span className="absolute top-1.5 right-3 text-sm text-muted-foreground z-10">
after
</span>
Expand All @@ -56,7 +56,7 @@ export function Comparizon() {
Do you feel the difference?
</h2>
</div>
</>
</div>
);
}

Expand Down
Loading