diff --git a/assets/ipad_dashbard_calendar.png b/assets/ipad_dashbard_calendar.png new file mode 100644 index 0000000..9161cc8 Binary files /dev/null and b/assets/ipad_dashbard_calendar.png differ diff --git a/src/views/Landing/TabletInstallationSection.jsx b/src/views/Landing/TabletInstallationSection.jsx new file mode 100644 index 0000000..3f5f1d0 --- /dev/null +++ b/src/views/Landing/TabletInstallationSection.jsx @@ -0,0 +1,178 @@ +import { Box, Container, Typography } from '@mui/joy' + +const TabletInstallationSection = () => { + return ( + + {/* Section Header */} + + + Perfect for Tablet Installations + + + Mount Donetick on your tablet for easy family task management. Perfect + for kitchens, offices, or any shared space. + + + + {/* Tablet Image Section */} + + DoneTick dashboard with calendar view showing task management interface + + + {/* Features Grid */} + + + + Kitchen Ready + + + Perfect for family chore tracking. Mount it in your kitchen for + everyone to see and update tasks easily. + + + + + + Office Dashboard + + + Transform any workspace with a dedicated task management display. + Great for team collaboration and productivity. + + + + + + Always Accessible + + + No need to reach for phones. With a mounted tablet, your task + management is always visible and touchable. + + + + + ) +} + +export default TabletInstallationSection