Merge version_4 into main #10

Merged
bender merged 4 commits from version_4 into main 2026-04-14 23:30:22 +00:00
4 changed files with 4 additions and 3 deletions

View File

@@ -30,6 +30,7 @@ export default function DashboardPage() {
gridVariant="uniform-all-items-equal"
animationType="blur-reveal"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
</ThemeProvider>

View File

@@ -27,7 +27,7 @@ export default function PrivacyPage() {
<LegalSection
layout="page"
title="Privacy Policy"
sections={[{heading: "Data", content: {type: "paragraph", text: "We protect your data."}}]}
sections={[{heading: "Data", content: {text: "We protect your data.", type: "paragraph"}}]}
/>
</div>
</ThemeProvider>

View File

@@ -35,7 +35,7 @@ export default function ResponsibleGamingPage() {
layout="page"
title="Responsible Gaming"
sections={[
{ heading: "Our Commitment", content: { type: "paragraph", text: "At Swift Haul, we prioritize safety and integrity in everything we do." } }
{ heading: "Our Commitment", content: { text: "At Swift Haul, we prioritize safety and integrity in everything we do.", type: "paragraph" } }
]}
/>
</div>

View File

@@ -27,7 +27,7 @@ export default function TermsPage() {
<LegalSection
layout="page"
title="Terms of Service"
sections={[{heading: "Usage", content: {type: "paragraph", text: "By using our services, you agree to these terms."}}]}
sections={[{heading: "Usage", content: {text: "By using our services, you agree to these terms.", type: "paragraph"}}]}
/>
</div>
</ThemeProvider>