mirror of
https://github.com/lumina-rocks/lumina.git
synced 2026-04-10 23:47:05 +02:00
19 lines
337 B
TypeScript
19 lines
337 B
TypeScript
"use client";
|
|
|
|
import { Search } from "@/components/Search";
|
|
import { useEffect } from "react";
|
|
|
|
export default function SearchMainPage() {
|
|
useEffect(() => {
|
|
document.title = `Search | LUMINA`;
|
|
}, []);
|
|
|
|
return (
|
|
<>
|
|
<div className="flex flex-col items-center py-6 px-6">
|
|
<Search />
|
|
</div>
|
|
</>
|
|
);
|
|
}
|