mirror of
https://github.com/docmost/docmost.git
synced 2026-08-28 01:07:08 +08:00
28 lines
701 B
TypeScript
28 lines
701 B
TypeScript
import { Container, Space } from "@mantine/core";
|
|
import HomeTabs from "@/features/home/components/home-tabs";
|
|
import HomeAiPrompt from "@/features/home/components/home-ai-prompt";
|
|
import SpaceCarousel from "@/features/space/components/space-carousel.tsx";
|
|
import { useTranslation } from "react-i18next";
|
|
import { DocumentTitle } from "@/components/ui/document-title.tsx";
|
|
|
|
export default function Home() {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<>
|
|
<DocumentTitle title={t("Home")} />
|
|
<Container size={"900"} pt="xl">
|
|
<HomeAiPrompt />
|
|
|
|
<Space h="xl" />
|
|
|
|
<SpaceCarousel />
|
|
|
|
<Space h="xl" />
|
|
|
|
<HomeTabs />
|
|
</Container>
|
|
</>
|
|
);
|
|
}
|