"use client"; import { Button } from "@/components/ui/button"; import { PlusCircle, RefreshCw } from "lucide-react"; import Link from "next/link"; import { GoalsList } from "./components/goals-list"; import { useState } from "react"; export default function GoalsPage() { const [refreshing, setRefreshing] = useState(false); const handleRefresh = () => { setRefreshing(true); // Force reload the page window.location.href = `/goals?refresh=${new Date().getTime()}`; }; return (
Track your progress towards your financial goals