"use client"; import GlobalFeed from "@/components/GlobalFeed"; import { useEffect } from "react"; export default function GlobalFeedPage() { useEffect(() => { document.title = `Global Feed | LUMINA`; }, []); return (
); }