2024-06-08 07:44:12 +00:00
|
|
|
import { HomeLogo } from "@/components/HomeLogo";
|
|
|
|
import { SearchInput } from "@/components/SearchInput";
|
|
|
|
import { ToggleTheme, SwitchLanguage } from "@/components/FloatTool";
|
2024-06-22 04:17:47 +00:00
|
|
|
import { Stats } from "@/components/Stats";
|
2024-06-08 07:44:12 +00:00
|
|
|
|
|
|
|
export default function Home() {
|
|
|
|
return (
|
|
|
|
<section className="flex flex-col items-center justify-center gap-4 w-4/5 md:w-3/5 h-full mx-auto pb-24 md:pb-20">
|
|
|
|
<HomeLogo />
|
|
|
|
<SearchInput />
|
2024-06-22 04:17:47 +00:00
|
|
|
<div className="fixed bottom-4 right-4 invisible md:visible">
|
|
|
|
<Stats />
|
|
|
|
</div>
|
2024-06-08 07:44:12 +00:00
|
|
|
<div className="fixed top-4 right-4 flex gap-1">
|
|
|
|
<SwitchLanguage noBg />
|
|
|
|
<ToggleTheme noBg />
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
);
|
|
|
|
}
|