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: Button Component Navigation Issue #28

Merged
merged 1 commit into from
Jan 6, 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
9 changes: 6 additions & 3 deletions src/components/sections/main-features.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import { ProjectStatusCard } from "@/components/prismui/expandable-card";
import { Plus, Upload, Palette, Share2, BookMarked } from "lucide-react";
import DisplayCards from "@/components/prismui/display-cards";
import { LogoCarousel } from "@/components/prismui/logo-carousel";
import Link from "next/link";

interface FeatureCardProps {
title: string;
Expand Down Expand Up @@ -106,9 +107,11 @@ export function MainFeatures() {
transition={{ duration: 0.8, ease: [0.16, 1, 0.3, 1] }}
viewport={{ once: true }}
>
<Button variant="outline" className="rounded-full mb-4">
Components
</Button>
<Link href={"/docs"}>
<Button variant="outline" className="rounded-full mb-4">
Components
</Button>
</Link>
<h2 className="text-3xl font-bold tracking-tight sm:text-5xl mb-4">
Everything you need to build modern apps
</h2>
Expand Down