Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .claude/settings.local.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"permissions": {
"allow": [
"Bash(npm run dev:*)",
"Bash(npm install:*)",
"Bash(npm run build:*)",
"Bash(cat:*)"
],
"deny": [],
"ask": []
}
}
519 changes: 284 additions & 235 deletions app/about/page.tsx

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
--border: 0 0% 89%;
--input: 0 0% 89%;
--ring: 0 0% 0%;
--radius: 0.75rem;
--radius: 0;
}

.dark {
Expand Down
466 changes: 290 additions & 176 deletions app/mindmaster/page.tsx

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions app/network/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use client"

import React, { useEffect, useState } from "react"
import React, { useEffect, useState, useCallback } from "react"
import { ZoomIn, ZoomOut, Maximize2, RefreshCw, Target, Network, Table, ChevronDown, ChevronUp, Tag as TagIcon } from "lucide-react"
import dynamic from "next/dynamic"

Expand Down Expand Up @@ -425,7 +425,7 @@ export default function MentorshipPage() {
const [isRefreshing, setIsRefreshing] = useState(false)
const [hasNewData, setHasNewData] = useState(false)

const fetchData = async (showRefreshIndicator = false) => {
const fetchData = useCallback(async (showRefreshIndicator = false) => {
if (showRefreshIndicator) setIsRefreshing(true)
if (!showRefreshIndicator) setLoading(true)
setError(null)
Expand Down Expand Up @@ -466,12 +466,12 @@ export default function MentorshipPage() {
setLoading(false)
setIsRefreshing(false)
}
}
}, [mentors, mentees, lastUpdated])

// Initial data fetch
useEffect(() => {
fetchData()
}, [])
}, [fetchData])

// Listen for admin updates via localStorage or window events (but don't auto-refresh)
useEffect(() => {
Expand Down
575 changes: 575 additions & 0 deletions app/our-story/page-old.tsx

Large diffs are not rendered by default.

Loading