Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
sweepstake
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Arjun Jhukal
sweepstake
Commits
4b61220d
Commit
4b61220d
authored
Sep 24, 2025
by
Arjun Jhukal
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated the notification icon
parent
02310fd9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
page.tsx
...board)/(user)/(outsideAuth)/exclusive-games/[id]/page.tsx
+2
-2
index.tsx
...hboard/games/exclusiveGames/exclusiveGameDetail/index.tsx
+1
-1
index.tsx
...es/dashboard/userDashboard/games/exclusiveGames/index.tsx
+1
-1
No files found.
src/app/(dashboard)/(user)/(outsideAuth)/exclusive-games/[id]/page.tsx
View file @
4b61220d
import
ExlusiveGameDetail
from
"@/components/pages/dashboard/userDashboard/games/exclusiveGames/exclusiveGameDetail"
;
import
Ex
c
lusiveGameDetail
from
"@/components/pages/dashboard/userDashboard/games/exclusiveGames/exclusiveGameDetail"
;
import
{
getSingleGame
}
from
"@/serverApi/game"
;
import
{
getSingleGame
}
from
"@/serverApi/game"
;
import
{
cookies
}
from
"next/headers"
;
import
{
cookies
}
from
"next/headers"
;
...
@@ -7,6 +7,6 @@ export default async function UserGameDetail(props: { params: Promise<{ id: stri
...
@@ -7,6 +7,6 @@ export default async function UserGameDetail(props: { params: Promise<{ id: stri
const
game
=
await
getSingleGame
(
id
);
const
game
=
await
getSingleGame
(
id
);
return
<
ExlusiveGameDetail
game=
{
game
}
/>
return
<
Ex
c
lusiveGameDetail
game=
{
game
}
/>
}
}
src/components/pages/dashboard/userDashboard/games/exclusiveGames/exclusiveGameDetail/index.tsx
View file @
4b61220d
...
@@ -9,7 +9,7 @@ import ScreenShotSlider from "@/components/molecules/Sliders/ScreenShotSlider";
...
@@ -9,7 +9,7 @@ import ScreenShotSlider from "@/components/molecules/Sliders/ScreenShotSlider";
import
CustomLightGallery
from
"@/components/organism/LightGallery"
;
import
CustomLightGallery
from
"@/components/organism/LightGallery"
;
import
Link
from
"next/link"
;
import
Link
from
"next/link"
;
export
default
function
ExlusiveGameDetail
({
game
}:
{
game
:
SingleGameResponse
})
{
export
default
function
Ex
c
lusiveGameDetail
({
game
}:
{
game
:
SingleGameResponse
})
{
return
(
return
(
<>
<>
<
section
className=
"detail__banner mb-8"
>
<
section
className=
"detail__banner mb-8"
>
...
...
src/components/pages/dashboard/userDashboard/games/exclusiveGames/index.tsx
View file @
4b61220d
...
@@ -25,7 +25,7 @@ export default async function ExclusiveGamePage() {
...
@@ -25,7 +25,7 @@ export default async function ExclusiveGamePage() {
<
div
className=
"grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 xl:grid-cols-5 gap-4"
>
<
div
className=
"grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 xl:grid-cols-5 gap-4"
>
{
{
games
?.
data
?.
data
.
map
((
game
)
=>
(
games
?.
data
?.
data
.
map
((
game
)
=>
(
<
a
href=
{
`exlusive-games/${game.id}`
}
className=
"group block overflow-hidden hover:shadow-md transition rounded-2xl aspect-[208/222] relative"
key=
{
game
.
id
}
>
<
a
href=
{
`ex
c
lusive-games/${game.id}`
}
className=
"group block overflow-hidden hover:shadow-md transition rounded-2xl aspect-[208/222] relative"
key=
{
game
.
id
}
>
<
Tooltip
title=
{
game
.
name
}
>
<
Tooltip
title=
{
game
.
name
}
>
<
Image
<
Image
src=
{
game
.
thumbnail
||
"/assets/images/fallback.png"
}
src=
{
game
.
thumbnail
||
"/assets/images/fallback.png"
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment