features section

This commit is contained in:
2026-04-15 14:56:27 +02:00
parent b3221a5cac
commit 25b697d13f
7 changed files with 51 additions and 3 deletions
+15
View File
@@ -0,0 +1,15 @@
type props = {
imagePath : string;
title : String;
text : String;
};
export const FeatureColumn = ({ imagePath, title, text }: props) => {
return (
<div className="flex flex-col items-center justify-start h-100 gap-7">
<img className="w-33.75 h-33.75" src={imagePath} alt={`icon illustrating the text ${title}`} />
<div className="font-serif text-brand-brown text-3xl">{title}</div>
<div className="font-sans text-normal text-center w-3/5">{text}</div>
</div>
);
};