mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
* feat(root): rsc components added, packages modified, filter dom props function adapted * fix(root): eslint/prettier issues
50 lines
1.5 KiB
TypeScript
50 lines
1.5 KiB
TypeScript
import {Spacer} from "@nextui-org/spacer";
|
|
|
|
import {Hero} from "@/components/marketing/hero";
|
|
import {FeaturesGrid} from "@/components/marketing/features-grid";
|
|
import {CustomThemes} from "@/components/marketing/custom-themes";
|
|
import {A11yOtb} from "@/components/marketing/a11y-otb";
|
|
import {DarkMode} from "@/components/marketing/dark-mode";
|
|
import {Customization} from "@/components/marketing/customization";
|
|
import {LastButNotLeast} from "@/components/marketing/last-but-not-least";
|
|
import {InstallBanner} from "@/components/marketing/install-banner";
|
|
import {Community} from "@/components/marketing/community";
|
|
import {Support} from "@/components/marketing/support";
|
|
import landingContent from "@/content/landing";
|
|
import {getAllSponsors} from "@/utils/get-all-sponsors";
|
|
|
|
async function getData() {
|
|
try {
|
|
const sponsors = await getAllSponsors();
|
|
|
|
return {
|
|
sponsors,
|
|
};
|
|
} catch (error) {
|
|
throw new Error("Failed to fetch data");
|
|
}
|
|
}
|
|
|
|
export default async function Home() {
|
|
const data = await getData();
|
|
|
|
return (
|
|
<main className="container mx-auto max-w-7xl px-6 flex-grow">
|
|
<section className="flex flex-col items-center justify-center">
|
|
<Hero />
|
|
<FeaturesGrid features={landingContent.topFeatures} />
|
|
<CustomThemes />
|
|
<A11yOtb />
|
|
<DarkMode />
|
|
<Customization />
|
|
<LastButNotLeast />
|
|
<Support sponsors={data.sponsors} />
|
|
<Spacer y={24} />
|
|
<InstallBanner />
|
|
<Community />
|
|
<Spacer y={24} />
|
|
</section>
|
|
</main>
|
|
);
|
|
}
|