Rule Stack Start

This commit is contained in:
adilallo
2025-08-22 13:57:56 -06:00
parent a8f17cc6c7
commit a9557ddedf
10 changed files with 183 additions and 6 deletions
+2
View File
@@ -1,6 +1,7 @@
import NumberedCards from "./components/NumberedCards";
import HeroBanner from "./components/HeroBanner";
import LogoWall from "./components/LogoWall";
import RuleStack from "./components/RuleStack";
export default function Page() {
const heroBannerData = {
@@ -39,6 +40,7 @@ export default function Page() {
<HeroBanner {...heroBannerData} />
<LogoWall />
<NumberedCards {...numberedCardsData} />
<RuleStack />
</div>
);
}