setShowPomodoro(false)} />
>
);
}
diff --git a/src/components/toolbox/index.ts b/src/components/toolbox/index.ts
index 8a3fad5..b4b226a 100644
--- a/src/components/toolbox/index.ts
+++ b/src/components/toolbox/index.ts
@@ -1 +1,2 @@
export { Notepad } from './notepad';
+export { Pomodoro } from './pomodoro';
diff --git a/src/components/toolbox/pomodoro/index.ts b/src/components/toolbox/pomodoro/index.ts
new file mode 100644
index 0000000..9b721ae
--- /dev/null
+++ b/src/components/toolbox/pomodoro/index.ts
@@ -0,0 +1 @@
+export { Pomodoro } from './pomodoro';
diff --git a/src/components/toolbox/pomodoro/pomodoro.module.css b/src/components/toolbox/pomodoro/pomodoro.module.css
new file mode 100644
index 0000000..8f414f5
--- /dev/null
+++ b/src/components/toolbox/pomodoro/pomodoro.module.css
@@ -0,0 +1 @@
+/* TODO */
diff --git a/src/components/toolbox/pomodoro/pomodoro.tsx b/src/components/toolbox/pomodoro/pomodoro.tsx
new file mode 100644
index 0000000..22c88c9
--- /dev/null
+++ b/src/components/toolbox/pomodoro/pomodoro.tsx
@@ -0,0 +1,30 @@
+import { useState } from 'react';
+
+import { Modal } from '@/components/modal';
+import { Tabs } from './tabs';
+import { Timer } from './timer';
+
+// import styles from './pomodoro.module.css';
+
+interface PomodoroProps {
+ onClose: () => void;
+ show: boolean;
+}
+
+export function Pomodoro({ onClose, show }: PomodoroProps) {
+ const [selectedTab, setSelectedTab] = useState('pomodoro');
+
+ const tabs = [
+ { id: 'pomodoro', label: 'Pomodoro' },
+ { id: 'short', label: 'Break' },
+ { id: 'long', label: 'Long Break' },
+ ];
+
+ return (
+
+ Pomodoro Timer
+
+
+
+ );
+}
diff --git a/src/components/toolbox/pomodoro/tabs/index.ts b/src/components/toolbox/pomodoro/tabs/index.ts
new file mode 100644
index 0000000..81aabb7
--- /dev/null
+++ b/src/components/toolbox/pomodoro/tabs/index.ts
@@ -0,0 +1 @@
+export { Tabs } from './tabs';
diff --git a/src/components/toolbox/pomodoro/tabs/tabs.module.css b/src/components/toolbox/pomodoro/tabs/tabs.module.css
new file mode 100644
index 0000000..6d361f8
--- /dev/null
+++ b/src/components/toolbox/pomodoro/tabs/tabs.module.css
@@ -0,0 +1,34 @@
+.tabs {
+ display: flex;
+ column-gap: 4px;
+ align-items: center;
+ padding: 4px;
+ margin: 8px 0;
+ background-color: var(--color-neutral-50);
+ border: 1px solid var(--color-neutral-200);
+ border-radius: 8px;
+
+ & .tab {
+ display: flex;
+ flex-grow: 1;
+ align-items: center;
+ justify-content: center;
+ height: 45px;
+ font-size: var(--font-sm);
+ color: var(--color-foreground);
+ cursor: pointer;
+ background-color: transparent;
+ border: 1px solid transparent;
+ border-radius: 4px;
+ transition: 0.2s;
+
+ &.selected {
+ background-color: var(--color-neutral-200);
+ border-color: var(--color-neutral-300);
+ }
+
+ &:hover {
+ background-color: var(--color-neutral-100);
+ }
+ }
+}
diff --git a/src/components/toolbox/pomodoro/tabs/tabs.tsx b/src/components/toolbox/pomodoro/tabs/tabs.tsx
new file mode 100644
index 0000000..728bc5e
--- /dev/null
+++ b/src/components/toolbox/pomodoro/tabs/tabs.tsx
@@ -0,0 +1,25 @@
+import { cn } from '@/helpers/styles';
+
+import styles from './tabs.module.css';
+
+interface TabsProps {
+ onSelect: (id: string) => void;
+ selectedTab: string;
+ tabs: Array<{ id: string; label: string }>;
+}
+
+export function Tabs({ onSelect, selectedTab, tabs }: TabsProps) {
+ return (
+
+ {tabs.map(tab => (
+
+ ))}
+
+ );
+}
diff --git a/src/components/toolbox/pomodoro/timer/index.ts b/src/components/toolbox/pomodoro/timer/index.ts
new file mode 100644
index 0000000..91b3f08
--- /dev/null
+++ b/src/components/toolbox/pomodoro/timer/index.ts
@@ -0,0 +1 @@
+export { Timer } from './timer';
diff --git a/src/components/toolbox/pomodoro/timer/timer.module.css b/src/components/toolbox/pomodoro/timer/timer.module.css
new file mode 100644
index 0000000..f1e350c
--- /dev/null
+++ b/src/components/toolbox/pomodoro/timer/timer.module.css
@@ -0,0 +1,12 @@
+.timer {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: 100%;
+ padding: 30px 0;
+ font-size: var(--font-xlg);
+ font-weight: 500;
+ background-color: var(--color-neutral-50);
+ border: 1px solid var(--color-neutral-200);
+ border-radius: 8px;
+}
diff --git a/src/components/toolbox/pomodoro/timer/timer.tsx b/src/components/toolbox/pomodoro/timer/timer.tsx
new file mode 100644
index 0000000..21aa1f5
--- /dev/null
+++ b/src/components/toolbox/pomodoro/timer/timer.tsx
@@ -0,0 +1,5 @@
+import styles from './timer.module.css';
+
+export function Timer() {
+ return 25:00
;
+}