project setup

This commit is contained in:
Sone
2025-11-02 10:00:53 +01:00
parent 75bd171804
commit 7cb4c5345e
51 changed files with 3616 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import { ReactNode } from "react";
interface FeatureCardProps {
icon: ReactNode;
title: string;
description: string;
}
const FeatureCard = ({ icon, title, description }: FeatureCardProps) => {
return (
<div className="flex flex-col gap-5 border-[3px] border-[var(--color-2)] p-4 rounded-2xl">
<div className="mb-2 bg-transparent">{icon}</div>
<h3 className="font-mono font-bold leading-none mb-2">{title}</h3>
<p className="text-sm sm:text-base font-mono">{description}</p>
</div>
);
};
export default FeatureCard;