Hero Banner xsm breakpoint

This commit is contained in:
adilallo
2025-08-18 12:56:53 -06:00
parent 8fa7cea488
commit a04a5a6eeb
9 changed files with 2533 additions and 15 deletions
+11
View File
@@ -1,6 +1,16 @@
import NumberedCards from "./components/NumberedCards";
import HeroBanner from "./components/HeroBanner";
export default function Page() {
const heroBannerData = {
title: "Collaborate",
subtitle: "with clarity",
description:
"Help your community make important decisions in a way that reflects its unique values.",
ctaText: "Learn how CommunityRule works",
ctaHref: "#",
};
const numberedCardsData = {
title: "How CommunityRule works",
subtitle: "Here's a quick overview of the process, from start to finish.",
@@ -25,6 +35,7 @@ export default function Page() {
return (
<div>
<HeroBanner {...heroBannerData} />
<NumberedCards {...numberedCardsData} />
</div>
);