diff --git a/app/page.tsx b/app/page.tsx index 8c71194..75beb1e 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -7,16 +7,10 @@ import Projects from "./components/Projects"; import Contact from "./components/Contact"; import Footer from "./components/Footer"; import Script from "next/script"; -import dynamic from "next/dynamic"; import ErrorBoundary from "@/components/ErrorBoundary"; +import ActivityFeed from "./components/ActivityFeed"; import { motion } from "framer-motion"; -// Wrap ActivityFeed in error boundary to prevent crashes -const ActivityFeed = dynamic(() => import("./components/ActivityFeed").catch(() => ({ default: () => null })), { - ssr: false, - loading: () => null, -}); - export default function Home() { return (