import { AutoAwesomeMosaicOutlined, AutoAwesomeRounded, CodeRounded, GroupRounded, HistoryRounded, Webhook, } from '@mui/icons-material' import Card from '@mui/joy/Card' import Container from '@mui/joy/Container' import Typography from '@mui/joy/Typography' import { styled } from '@mui/system' const FeatureIcon = styled('div')({ display: 'flex', alignItems: 'center', justifyContent: 'center', backgroundColor: '#f0f0f0', // Adjust the background color as needed borderRadius: '50%', minWidth: '60px', height: '60px', marginRight: '16px', }) const CardData = [ { title: 'Open Source & Transparent', description: 'Donetick is open source software. You can view, modify, and contribute to the code on GitHub.', icon: CodeRounded, }, { title: 'Circles: Your Task Hub', description: 'build with sharing in mind. invite other to the circle and you can assign tasks to each other. and only see the tasks the should be shared', icon: GroupRounded, }, { title: 'Track Your Progress', description: 'View a history of completed tasks. or use things to track simply things!', icon: HistoryRounded, }, { title: 'Automated Task Scheduling', description: 'Set up Tasks to repeat daily, weekly, or monthly, or maybe specifc day in specifc months? Donetick have a flexible scheduling system', icon: AutoAwesomeMosaicOutlined, }, { title: 'Automated Task Assignment', description: 'For shared tasks, Donetick can randomly rotate assignments or choose based on last completion or least assigned.', icon: AutoAwesomeRounded, }, { title: 'Integrations & Webhooks', description: 'Donetick can update things programmatically with API call. you can update things from other services like IFTTT, Homeassistant or even your own service', icon: Webhook, }, ] function Feature2({ icon: Icon, title, headline, description, index }) { return (
{/* Changes are within this div */} {title} {headline}
{description}
) } function FeaturesSection() { const features = CardData.map((feature, index) => ( )) return ( Why Donetick?
{features}
) } export default FeaturesSection