diff --git a/README.md b/README.md index 9e21c14f..3e0f4178 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/apps/web/src/views/home/components/Features.tsx b/apps/web/src/views/home/components/Features.tsx index 7514c50f..71339e43 100644 --- a/apps/web/src/views/home/components/Features.tsx +++ b/apps/web/src/views/home/components/Features.tsx @@ -28,6 +28,7 @@ const FeatureItem = ({ description: string; icon: Record; comingSoon?: boolean; + new?: boolean; }; }) => { const [isHovered, setIsHovered] = useState(false); @@ -66,6 +67,12 @@ const FeatureItem = ({ {t`Coming soon`} )} + + {feature.new && ( +
+ {t`New`} +
+ )} ); }; @@ -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`,