chore: update readme and features

This commit is contained in:
Henry
2025-10-10 13:47:06 +01:00
parent a41fe6ea3d
commit b651158494
2 changed files with 9 additions and 2 deletions

View File

@@ -27,7 +27,7 @@
- 🔍 **Labels & Filters**: Organise and find cards quickly
- 💬 **Comments**: Discuss and collaborate with your team
- 📝 **Activity Log**: Track all card changes with detailed activity history
- 🎨 **Templates (coming soon)** : Save time with reusable board templates
- 🎨 **Templates** : Save time with reusable custom board templates
- ⚡️ **Integrations (coming soon)** : Connect your favourite tools
See our [roadmap](https://kan.bn/kan/roadmap) for upcoming features.

View File

@@ -28,6 +28,7 @@ const FeatureItem = ({
description: string;
icon: Record<string, unknown>;
comingSoon?: boolean;
new?: boolean;
};
}) => {
const [isHovered, setIsHovered] = useState(false);
@@ -66,6 +67,12 @@ const FeatureItem = ({
{t`Coming soon`}
</div>
)}
{feature.new && (
<div className="absolute right-4 top-4 rounded-full border border-light-300 px-2 py-1 text-[10px] text-light-1000 dark:border-dark-600 dark:bg-dark-50 dark:text-dark-900">
{t`New`}
</div>
)}
</div>
);
};
@@ -108,7 +115,7 @@ const Features = ({ theme }: { theme: "light" | "dark" }) => {
title: t`Templates`,
description: t`Save time with reusable board templates.`,
icon: isDark ? templatesIconDark : templatesIconLight,
comingSoon: true,
new: true,
},
{
title: t`Integrations`,