This commit is contained in:
“kirukib” 2026-02-18 16:11:35 +03:00
parent c471aa30d4
commit 6fa5ba58d7
17 changed files with 92 additions and 0 deletions

View File

@ -0,0 +1,2 @@
Internal shared components for app routes.

4
app/bonus/page.tsx Normal file
View File

@ -0,0 +1,4 @@
export default function BonusPage() {
return <div className="text-sm text-foreground">Bonus page placeholder</div>
}

View File

@ -0,0 +1,6 @@
export default function CheckTicketPage() {
return (
<div className="text-sm text-foreground">Check ticket page placeholder</div>
)
}

View File

@ -0,0 +1,12 @@
type FastcodeBetPageProps = {
params: { id: string }
}
export default function FastcodeBetPage({ params }: FastcodeBetPageProps) {
return (
<div className="text-sm text-foreground">
Fast code bet page for ID: <span className="font-mono">{params.id}</span>
</div>
)
}

6
app/dashboard/page.tsx Normal file
View File

@ -0,0 +1,6 @@
export default function DashboardPage() {
return (
<div className="text-sm text-foreground">Dashboard page placeholder</div>
)
}

6
app/deposit/page.tsx Normal file
View File

@ -0,0 +1,6 @@
export default function DepositPage() {
return (
<div className="text-sm text-foreground">Deposit page placeholder</div>
)
}

2
app/dmodals/README.md Normal file
View File

@ -0,0 +1,2 @@
Route-level modal components and layouts.

4
app/games/page.tsx Normal file
View File

@ -0,0 +1,4 @@
export default function GamesPage() {
return <div className="text-sm text-foreground">Games page placeholder</div>
}

6
app/history/page.tsx Normal file
View File

@ -0,0 +1,6 @@
export default function HistoryPage() {
return (
<div className="text-sm text-foreground">History page placeholder</div>
)
}

4
app/login/page.tsx Normal file
View File

@ -0,0 +1,4 @@
export default function LoginPage() {
return <div className="text-sm text-foreground">Login page placeholder</div>
}

View File

@ -0,0 +1,6 @@
export default function NotificationsPage() {
return (
<div className="text-sm text-foreground">Notifications page placeholder</div>
)
}

6
app/profile/page.tsx Normal file
View File

@ -0,0 +1,6 @@
export default function ProfilePage() {
return (
<div className="text-sm text-foreground">Profile page placeholder</div>
)
}

6
app/promotions/page.tsx Normal file
View File

@ -0,0 +1,6 @@
export default function PromotionsPage() {
return (
<div className="text-sm text-foreground">Promotions page placeholder</div>
)
}

4
app/raffle/page.tsx Normal file
View File

@ -0,0 +1,4 @@
export default function RafflePage() {
return <div className="text-sm text-foreground">Raffle page placeholder</div>
}

6
app/register/page.tsx Normal file
View File

@ -0,0 +1,6 @@
export default function RegisterPage() {
return (
<div className="text-sm text-foreground">Register page placeholder</div>
)
}

View File

@ -0,0 +1,8 @@
export default function ResetPasswordPage() {
return (
<div className="text-sm text-foreground">
Reset password page placeholder
</div>
)
}

4
app/rules/page.tsx Normal file
View File

@ -0,0 +1,4 @@
export default function RulesPage() {
return <div className="text-sm text-foreground">Rules page placeholder</div>
}