mirror of
https://github.com/lumina-rocks/lumina.git
synced 2026-04-10 07:26:55 +02:00
26 lines
613 B
TypeScript
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 />
|
|
</>
|
|
);
|
|
}
|