mirror of
https://github.com/lumina-rocks/lumina.git
synced 2026-04-13 17:07:01 +02:00
18 lines
319 B
TypeScript
18 lines
319 B
TypeScript
"use client";
|
|
|
|
import GlobalFeed from "@/components/GlobalFeed";
|
|
import { useEffect } from "react";
|
|
|
|
export default function GlobalFeedPage() {
|
|
|
|
useEffect(() => {
|
|
document.title = `Global Feed | LUMINA`;
|
|
}, []);
|
|
|
|
return (
|
|
<div className="py-4 px-2 md:py-6 md:px-6">
|
|
<GlobalFeed />
|
|
</div>
|
|
);
|
|
}
|