Skip to content

Commit

Permalink
refactor(apps/web): landing/Features changes
Browse files Browse the repository at this point in the history
  • Loading branch information
eckoln committed May 26, 2024
1 parent bcc660d commit 36064e9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions apps/web/src/components/pages/landing/features.tsx
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
import { CheckCircle2Icon, XIcon } from 'lucide-react'
import { CheckCircleIcon, XIcon } from 'lucide-react'

export function Features() {
return (
<section id="features" className="bg-secondary/50">
<div className="mx-auto w-full max-w-screen-lg px-4 py-8">
<ul className="grid grid-cols-1 justify-center gap-4 py-8 text-3xl font-medium lg:grid-cols-3 lg:text-4xl">
<li className="inline-flex items-center justify-center space-x-4 lg:justify-start">
<XIcon className="size-12 shrink-0 text-red-500" />
<p className="text-muted-foreground">Payment</p>
</li>
<li className="inline-flex items-center justify-center space-x-4 lg:justify-start">
<XIcon className="size-12 shrink-0 text-red-500" />
<p className="text-nowrap text-muted-foreground lg:text-wrap">
Download required
</p>
</li>
<li className="inline-flex items-center justify-center space-x-4 lg:justify-start">
<CheckCircle2Icon className="size-12 shrink-0 text-green-500" />
<CheckCircleIcon className="size-12 shrink-0 text-green-500" />
<p>Free</p>
</li>
<li className="inline-flex items-center justify-center space-x-4 lg:justify-start">
<CheckCircleIcon className="size-12 shrink-0 text-green-500" />
<p>Open-source</p>
</li>
</ul>
Expand Down

0 comments on commit 36064e9

Please sign in to comment.