Switch to version 2: remove src/app/responsible-gaming/page.tsx

This commit is contained in:
2026-04-14 23:35:34 +00:00
parent 4f2afa47e8
commit de268e2aad

View File

@@ -1,53 +0,0 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import LegalSection from '@/components/legal/LegalSection';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function ResponsibleGamingPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Dashboard", id: "/dashboard" },
{ name: "Contact", id: "/contact" },
]}
brandName="Swift Haul"
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="page"
title="Responsible Gaming"
sections={[
{ heading: "Our Commitment", content: { text: "At Swift Haul, we prioritize safety and integrity in everything we do.", type: "paragraph" } }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="Swift Haul"
columns={[
{ title: "Company", items: [{ label: "About", href: "/about" }] },
{ title: "Support", items: [{ label: "Contact", href: "/contact" }] },
]}
/>
</div>
</ThemeProvider>
);
}