first commit

This commit is contained in:
a.alinaghipour
2026-04-05 15:53:20 +03:30
commit aa9ed69dd2
96 changed files with 7721 additions and 0 deletions

22
app/layout.tsx Normal file
View File

@@ -0,0 +1,22 @@
import type { Metadata } from "next";
import "./globals.css";
import SessionProvider from "@/components/SessionProvider";
import Navbar from "@/components/Navbar";
export const metadata: Metadata = {
title: "فانتزی جام جهانی",
description: "بازی فوتبال فانتزی جام جهانی",
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="fa" dir="rtl">
<body className="bg-gray-50 text-gray-900 font-sans min-h-screen">
<SessionProvider>
<Navbar />
{children}
</SessionProvider>
</body>
</html>
);
}