fs
This commit is contained in:
parent
c471aa30d4
commit
6fa5ba58d7
2
app/_components/README.md
Normal file
2
app/_components/README.md
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Internal shared components for app routes.
|
||||
|
||||
4
app/bonus/page.tsx
Normal file
4
app/bonus/page.tsx
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
export default function BonusPage() {
|
||||
return <div className="text-sm text-foreground">Bonus page placeholder</div>
|
||||
}
|
||||
|
||||
6
app/check-ticket/page.tsx
Normal file
6
app/check-ticket/page.tsx
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
export default function CheckTicketPage() {
|
||||
return (
|
||||
<div className="text-sm text-foreground">Check ticket page placeholder</div>
|
||||
)
|
||||
}
|
||||
|
||||
12
app/create-fastcode-bet/[id]/page.tsx
Normal file
12
app/create-fastcode-bet/[id]/page.tsx
Normal 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
6
app/dashboard/page.tsx
Normal 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
6
app/deposit/page.tsx
Normal 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
2
app/dmodals/README.md
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Route-level modal components and layouts.
|
||||
|
||||
4
app/games/page.tsx
Normal file
4
app/games/page.tsx
Normal 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
6
app/history/page.tsx
Normal 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
4
app/login/page.tsx
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
export default function LoginPage() {
|
||||
return <div className="text-sm text-foreground">Login page placeholder</div>
|
||||
}
|
||||
|
||||
6
app/notifications/page.tsx
Normal file
6
app/notifications/page.tsx
Normal 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
6
app/profile/page.tsx
Normal 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
6
app/promotions/page.tsx
Normal 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
4
app/raffle/page.tsx
Normal 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
6
app/register/page.tsx
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
export default function RegisterPage() {
|
||||
return (
|
||||
<div className="text-sm text-foreground">Register page placeholder</div>
|
||||
)
|
||||
}
|
||||
|
||||
8
app/reset-password/page.tsx
Normal file
8
app/reset-password/page.tsx
Normal 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
4
app/rules/page.tsx
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
export default function RulesPage() {
|
||||
return <div className="text-sm text-foreground">Rules page placeholder</div>
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user