mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
17 lines
392 B
TypeScript
17 lines
392 B
TypeScript
import {DefaultLayout} from "@/layouts";
|
|
import {Hero, FeaturesGrid, CustomThemes, A11yOtb} from "@/components";
|
|
import landingContent from "@/content/landing";
|
|
|
|
const IndexPage = () => {
|
|
return (
|
|
<DefaultLayout>
|
|
<Hero />
|
|
<FeaturesGrid features={landingContent.topFeatures} />
|
|
<CustomThemes />
|
|
<A11yOtb />
|
|
</DefaultLayout>
|
|
);
|
|
};
|
|
|
|
export default IndexPage;
|