Quote Block default breakpoint added

This commit is contained in:
adilallo
2025-08-25 15:52:39 -06:00
parent e76fcc6206
commit 44a26cb8ea
5 changed files with 121 additions and 13 deletions
+2
View File
@@ -2,6 +2,7 @@ import NumberedCards from "./components/NumberedCards";
import HeroBanner from "./components/HeroBanner";
import LogoWall from "./components/LogoWall";
import RuleStack from "./components/RuleStack";
import QuoteBlock from "./components/QuoteBlock";
export default function Page() {
const heroBannerData = {
@@ -41,6 +42,7 @@ export default function Page() {
<LogoWall />
<NumberedCards {...numberedCardsData} />
<RuleStack />
<QuoteBlock />
</div>
);
}