Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix landing page card allignment #489

Merged
merged 1 commit into from
Jan 7, 2025
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
6 changes: 3 additions & 3 deletions src/pages/landing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export function LandingPage() {
</div>
</div>
<div className="mx-auto grid max-w-5xl items-center gap-6 py-12 lg:grid-cols-3">
<Card>
<Card className="hover:shadow-lg transition-shadow duration-200 h-full">
<CardContent className="p-6">
<Lightning className="h-12 w-12 mb-4" />
<h3 className="text-xl font-bold">Version Control</h3>
Expand All @@ -142,7 +142,7 @@ export function LandingPage() {
</p>
</CardContent>
</Card>
<Card>
<Card className="hover:shadow-lg transition-shadow duration-200 h-full">
<CardContent className="p-6">
<Cpu className="h-12 w-12 mb-4" />
<h3 className="text-xl font-bold">Robust Autorouting</h3>
Expand All @@ -152,7 +152,7 @@ export function LandingPage() {
</p>
</CardContent>
</Card>
<Card>
<Card className="hover:shadow-lg transition-shadow duration-200 h-full">
<CardContent className="p-6">
<Maximize2 className="h-12 w-12 mb-4" />
<h3 className="text-xl font-bold">
Expand Down
Loading