diff --git a/public/assets/images/2048_logo.png b/public/assets/images/2048_logo.png new file mode 100644 index 0000000..d3c9bea Binary files /dev/null and b/public/assets/images/2048_logo.png differ diff --git a/public/assets/images/controller.png b/public/assets/images/controller.png new file mode 100644 index 0000000..a92a303 Binary files /dev/null and b/public/assets/images/controller.png differ diff --git a/src/app/[name]/(Dialogs)/game/page.tsx b/src/app/[name]/(Dialogs)/game/page.tsx new file mode 100644 index 0000000..41e3668 --- /dev/null +++ b/src/app/[name]/(Dialogs)/game/page.tsx @@ -0,0 +1,73 @@ +'use client' +import { ArrowLeft, Play } from 'iconsax-react' +import { type FC } from 'react' +import { useRouter } from 'next/navigation' +import Seperator from '@/components/utils/Seperator' +import Image from 'next/image' + +const GamePage: FC = () => { + + const router = useRouter() + + return ( +
+
+
+

بازی و سرگرمی

+ router.back()} + /> +
+ +
+
+
My Games
+
+ +
+ +
+ تا سفارشت آماده بشه بازی کن +
+
+ + game preview +
+ +
+
+
+ 2 + +
+ Call of Duty Mobile +
+
+ +
+
اجرا کنید
+ +
+ +
+
+
+ ) +} + +export default GamePage \ No newline at end of file diff --git a/src/app/globals.css b/src/app/globals.css index 2f45c73..4f557d2 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -364,3 +364,7 @@ html[data-theme="dark"] { @apply bg-background text-foreground; } } */ + +.dltr { + direction: ltr; +}