Switch to version 2: remove src/app/games/page.tsx
This commit is contained in:
@@ -1,61 +0,0 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
|
||||
export default function GamesPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="mediumLargeSizeMediumTitles"
|
||||
background="noiseDiagonalGradient"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Games", id: "/games" },
|
||||
{ name: "Betting", id: "/betting" },
|
||||
]}
|
||||
brandName="Swift Haul"
|
||||
/>
|
||||
</div>
|
||||
<div id="games" data-section="games">
|
||||
<ProductCardFour
|
||||
title="Our Gaming Categories"
|
||||
description="Explore our wide selection of exciting games, categorized for your enjoyment."
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
textboxLayout="default"
|
||||
products={[
|
||||
{ id: "g1", name: "Classic Slots", price: "Varied", variant: "Popular", imageSrc: "http://img.b2bpic.net/free-photo/shiny-slot-machine-casino_23-2148569830.jpg" },
|
||||
{ id: "g2", name: "Table Games", price: "Starts at $1", variant: "Featured", imageSrc: "http://img.b2bpic.net/free-photo/close-up-poker-chips-cards-green-table_23-2148569845.jpg" },
|
||||
{ id: "g3", name: "Live Casino", price: "Varies", variant: "New", imageSrc: "http://img.b2bpic.net/free-photo/live-dealer-roulette-wheel_23-2148569850.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Swift Haul"
|
||||
columns={[
|
||||
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Games", href: "/games" }, { label: "Betting", href: "/betting" }] }
|
||||
]}
|
||||
copyrightText="© 2024 Swift Haul Inc."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user