Files
lumina/app/page.tsx
mroxso 8c6b43f9c2 Trending kind20 (#49)
* new trending images (kind 20)
2025-02-27 21:37:48 +01:00

26 lines
613 B
TypeScript

"use client";
import { Search } from "@/components/Search";
import { TrendingAccounts } from "@/components/TrendingAccounts";
import { TrendingImages } from "@/components/TrendingImages";
import { TrendingImagesNew } from "@/components/TrendingImagesNew";
import { useEffect } from "react";
export default function Home() {
useEffect(() => {
document.title = `LUMINA`;
}, []);
return (
<>
<div className="flex flex-col items-center py-6 px-6">
<Search />
</div>
{/* <TrendingAccounts /> */}
{/* <TrendingImages /> */}
<TrendingImagesNew />
</>
);
}