diff --git a/src/components/about/StorySec.tsx b/src/components/about/StorySec.tsx
index 9e25fa9..41d2cc4 100644
--- a/src/components/about/StorySec.tsx
+++ b/src/components/about/StorySec.tsx
@@ -4,88 +4,107 @@ import { StoryTwo } from "./Story2";
import { StoryThree } from "./Story3";
export function StorySec() {
- const [style, setStyle] = useState("1");
+ const [activeStory, setActiveStory] = useState("1");
- const handleAddInvite = useCallback(
- (v: any) => {
- console.log(v);
- setStyle(v);
+ const handleStoryChange = useCallback((storyId: string) => {
+ setActiveStory(storyId);
+ }, []);
+
+ const stories = [
+ {
+ id: "1",
+ title: "Brand Story",
+ subtitle: "What is ANTL?",
+ component:
},
- [style]
- );
+ {
+ id: "2",
+ title: "Operations",
+ subtitle: "Fractal structure",
+ component:
+ },
+ {
+ id: "3",
+ title: "Organization",
+ subtitle: "Excellence in structure",
+ component:
+ }
+ ];
+
return (
- <>
-
-
-
-
-
- >
+
+ {/* Progress indicator */}
+
+ {stories.map((story) => (
+
+ ))}
+
+
);
-}
+}
\ No newline at end of file