import React from "react";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import { Brain, Clock, Calendar, Coffee } from "lucide-react";
interface PrincipleItem {
icon: React.ReactNode;
title: string;
description: string;
}
export default function WorkPrinciples() {
const principles: PrincipleItem[] = [
{
icon: ,
title: "Protected Deep Work",
description: "4 hours of focused deep work sessions spaced throughout the day",
},
{
icon: ,
title: "Optimized Task Placement",
description: "Team and admin tasks fit around deep work to avoid breaking flow",
},
{
icon: ,
title: "Strategic Breaks",
description: "Built-in breaks to maintain energy and focus throughout the day",
},
{
icon: ,
title: "Flexible Planning",
description: "Morning and end-of-day flexibility for syncing and wrap-up",
},
];
return (
Key Work Principles