mirror of
https://github.com/lumina-rocks/lumina.git
synced 2026-04-13 00:46:48 +02:00
24 lines
509 B
TypeScript
24 lines
509 B
TypeScript
"use client";
|
|
|
|
import { Search } from "@/components/Search";
|
|
import { TrendingAccounts } from "@/components/TrendingAccounts";
|
|
import { TrendingImages } from "@/components/TrendingImages";
|
|
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 />
|
|
</>
|
|
);
|
|
}
|