fix(page): add missing return statement in RootPage component

This commit is contained in:
cfngc4594 2025-05-07 16:42:39 +08:00
parent f93224f56e
commit f0beb69b2c

View File

@ -5,11 +5,13 @@ import { HeroSection } from "@/components/hero-section";
import { PrimaryFeatures } from "@/components/primary-features";
export default function RootPage() {
<>
<Header />
<HeroSection />
<PrimaryFeatures />
<FAQs />
<Footer />
</>;
return (
<>
<Header />
<HeroSection />
<PrimaryFeatures />
<FAQs />
<Footer />
</>
);
}