From 4d645d82d8b5331bde9f0bcfe3d4d9e52f9cc318 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 11:02:57 +0000 Subject: [PATCH] Switch to version 1: modified src/app/page.tsx --- src/app/page.tsx | 118 ++++++++++++++++++++++++++++------------------- 1 file changed, 70 insertions(+), 48 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index bf88bfd..ef05f58 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,13 +2,12 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import ContactText from '@/components/sections/contact/ContactText'; import FooterCard from '@/components/sections/footer/FooterCard'; import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; import LegalSection from '@/components/legal/LegalSection'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; export default function LandingPage() { @@ -29,25 +28,30 @@ export default function LandingPage() {
-
- -
-
@@ -110,23 +127,28 @@ export default function LandingPage() { layout="section" title="Terms and Responsible Gaming" sections={[ - { heading: "Responsible Play", content: { type: "paragraph", text: "Yono Games promotes responsible gaming. Ensure you play within your limits and legal boundaries." } }, - { heading: "Terms of Service", content: { type: "list", items: ["Players must be 18+ years of age.", "Real money gaming is subject to local laws.", "Withdrawals are processed within 24 hours."] } }, + { + heading: "Responsible Play", content: { type: "paragraph", text: "Yono Games promotes responsible gaming. Ensure you play within your limits and legal boundaries." }, + }, + { + heading: "Terms of Service", content: { type: "list", items: [ + "Players must be 18+ years of age.", "Real money gaming is subject to local laws.", "Withdrawals are processed within 24 hours.", "Accounts found in violation of terms will be suspended."], + }, + }, ]} />
-
@@ -139,4 +161,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}