Skip to content

Commit

Permalink
Merge pull request #103 from blackportal-ai/add-values-icons
Browse files Browse the repository at this point in the history
Added icons to values
  • Loading branch information
SvMak authored Jan 30, 2025
2 parents 46de55b + ad32b5d commit 0a38494
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/sections/about/Values/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,12 @@ export default function Values() {
<li key={`value-${idx}`}>
<Card className="h-full">
<CardHeader>
<div className="pb-2">
<value.icon className="h-6 w-6" />
</div>

<CardTitle className="text-xl">{value.title}</CardTitle>
<CardDescription className="text-lg">
<CardDescription className="text-lg leading-snug">
{value.text}
</CardDescription>
</CardHeader>
Expand Down
11 changes: 11 additions & 0 deletions src/data/values.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,29 @@
import {
BsLightbulb,
BsPeople,
BsPersonWorkspace,
BsRocketTakeoff,
} from 'react-icons/bs';

export const values = [
{
title: 'Pursue Excellence',
text: 'We strive for high standards and continuous improvement in all our efforts.',
icon: BsRocketTakeoff,
},
{
title: 'Take Ownership',
text: 'We take responsibility for our actions, projects, and outcomes.',
icon: BsPersonWorkspace,
},
{
title: 'Stay Pragmatic',
text: 'We prioritize practical solutions that deliver real value.',
icon: BsLightbulb,
},
{
title: 'Open Collaboration',
text: 'We build trust by sharing knowledge and working together openly.',
icon: BsPeople,
},
];

0 comments on commit 0a38494

Please sign in to comment.