├── public
├── _redirects
├── images
│ ├── bg.jpeg
│ ├── jym.png
│ ├── Scout.jpg
│ ├── goly.png
│ ├── img 1.jpeg
│ ├── img 2.jpg
│ ├── img 3.jpg
│ ├── img 7.jpeg
│ ├── img8.jpeg
│ ├── logo.png
│ ├── player.jpg
│ ├── scout.png
│ ├── bg home.jpg
│ ├── bglogin.jpeg
│ ├── images.jpeg
│ ├── player 2.jpg
│ ├── recovery.png
│ ├── training.png
│ ├── trining.png
│ ├── playerdata.jpg
│ ├── playerlogin.jpg
│ ├── Scout-DESKTOP-1B4TDEO.jpg
│ ├── undraw_junior_soccer_6sop.png
│ └── undraw_junior_soccer_6sop (1).png
└── vite.svg
├── src
├── index.css
├── main.jsx
├── config
│ └── Instance.js
├── page
│ ├── HomePage.jsx
│ ├── LoginPage.jsx
│ ├── SignupPage.jsx
│ ├── RegisterPage.jsx
│ ├── ChatPage.jsx
│ ├── PlayerPage.jsx
│ ├── ProfilePage.jsx
│ ├── SelectedPlayerPage.jsx
│ ├── searchPage.jsx
│ └── waitingPage.jsx
├── pagenation.css
├── App.jsx
├── helpers
│ └── validate.js
├── assets
│ └── react.svg
├── components
│ ├── auth
│ │ ├── Login.jsx
│ │ └── Signup.jsx
│ ├── layout
│ │ ├── Navbar.jsx
│ │ └── Footer.jsx
│ ├── Player.jsx
│ ├── SelectedPlayer.jsx
│ ├── SinglePage.jsx
│ ├── Notification.jsx
│ ├── AllPlayers.jsx
│ ├── Search.jsx
│ ├── Home.jsx
│ ├── Chat.jsx
│ ├── Profile.jsx
│ └── RegisterScout.jsx
└── error
│ └── errorPage.jsx
├── postcss.config.cjs
├── tailwind.config.cjs
├── vite.config.js
├── .gitignore
├── index.html
├── package.json
├── ProtectedRoutes.jsx
└── README.md
/public/_redirects:
--------------------------------------------------------------------------------
1 | /* /index.html 200
--------------------------------------------------------------------------------
/src/index.css:
--------------------------------------------------------------------------------
1 | @tailwind base;
2 | @tailwind components;
3 | @tailwind utilities;
--------------------------------------------------------------------------------
/public/images/bg.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AjmalDevala/FotWeb-Scout/HEAD/public/images/bg.jpeg
--------------------------------------------------------------------------------
/public/images/jym.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AjmalDevala/FotWeb-Scout/HEAD/public/images/jym.png
--------------------------------------------------------------------------------
/public/images/Scout.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AjmalDevala/FotWeb-Scout/HEAD/public/images/Scout.jpg
--------------------------------------------------------------------------------
/public/images/goly.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AjmalDevala/FotWeb-Scout/HEAD/public/images/goly.png
--------------------------------------------------------------------------------
/public/images/img 1.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AjmalDevala/FotWeb-Scout/HEAD/public/images/img 1.jpeg
--------------------------------------------------------------------------------
/public/images/img 2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AjmalDevala/FotWeb-Scout/HEAD/public/images/img 2.jpg
--------------------------------------------------------------------------------
/public/images/img 3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AjmalDevala/FotWeb-Scout/HEAD/public/images/img 3.jpg
--------------------------------------------------------------------------------
/public/images/img 7.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AjmalDevala/FotWeb-Scout/HEAD/public/images/img 7.jpeg
--------------------------------------------------------------------------------
/public/images/img8.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AjmalDevala/FotWeb-Scout/HEAD/public/images/img8.jpeg
--------------------------------------------------------------------------------
/public/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AjmalDevala/FotWeb-Scout/HEAD/public/images/logo.png
--------------------------------------------------------------------------------
/public/images/player.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AjmalDevala/FotWeb-Scout/HEAD/public/images/player.jpg
--------------------------------------------------------------------------------
/public/images/scout.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AjmalDevala/FotWeb-Scout/HEAD/public/images/scout.png
--------------------------------------------------------------------------------
/public/images/bg home.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AjmalDevala/FotWeb-Scout/HEAD/public/images/bg home.jpg
--------------------------------------------------------------------------------
/public/images/bglogin.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AjmalDevala/FotWeb-Scout/HEAD/public/images/bglogin.jpeg
--------------------------------------------------------------------------------
/public/images/images.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AjmalDevala/FotWeb-Scout/HEAD/public/images/images.jpeg
--------------------------------------------------------------------------------
/public/images/player 2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AjmalDevala/FotWeb-Scout/HEAD/public/images/player 2.jpg
--------------------------------------------------------------------------------
/public/images/recovery.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AjmalDevala/FotWeb-Scout/HEAD/public/images/recovery.png
--------------------------------------------------------------------------------
/public/images/training.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AjmalDevala/FotWeb-Scout/HEAD/public/images/training.png
--------------------------------------------------------------------------------
/public/images/trining.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AjmalDevala/FotWeb-Scout/HEAD/public/images/trining.png
--------------------------------------------------------------------------------
/public/images/playerdata.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AjmalDevala/FotWeb-Scout/HEAD/public/images/playerdata.jpg
--------------------------------------------------------------------------------
/public/images/playerlogin.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AjmalDevala/FotWeb-Scout/HEAD/public/images/playerlogin.jpg
--------------------------------------------------------------------------------
/postcss.config.cjs:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/public/images/Scout-DESKTOP-1B4TDEO.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AjmalDevala/FotWeb-Scout/HEAD/public/images/Scout-DESKTOP-1B4TDEO.jpg
--------------------------------------------------------------------------------
/public/images/undraw_junior_soccer_6sop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AjmalDevala/FotWeb-Scout/HEAD/public/images/undraw_junior_soccer_6sop.png
--------------------------------------------------------------------------------
/public/images/undraw_junior_soccer_6sop (1).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AjmalDevala/FotWeb-Scout/HEAD/public/images/undraw_junior_soccer_6sop (1).png
--------------------------------------------------------------------------------
/src/main.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import ReactDOM from 'react-dom/client'
3 | import App from './App'
4 | import './index.css'
5 |
6 | ReactDOM.createRoot(document.getElementById('root')).render(
7 |
43 | We are processing your request... 44 |
45 | 51 |57 | We Never Stop Dreaming Big{" "} 58 |
59 |103 | A player scout typically attends as many football matches as 104 | possible to evaluate targets first hand. Scouts who wish to 105 | identify promising young players typically attend 106 | lower-league club games,. 107 |
108 |Connect and Message!
109 |150 | {player?.position} 151 |
152 |163 | {player?.nationality} 164 |
165 || 101 | Player 102 | | 103 |104 | Player 105 | | 106 |107 | Email 108 | | 109 |110 | phone Number 111 | | 112 | 113 |114 | Action 115 | | 116 |
|---|---|---|---|---|
|
122 |
123 |
128 |
129 |
133 | {data.fullname}
134 |
135 |
136 |
137 | |
138 |
139 | 140 | {data.fullname} 141 | 142 | |
143 |
144 | 145 | {data.email} 146 | 147 | |
148 |
149 | {data.phone} 150 | |
151 |
152 | 153 | 163 | | 164 |
40 | {player?.position} 41 |
42 | 51 | 52 || 90 | User 91 | | 92 |93 | Profession 94 | | 95 |96 | Joined at 97 | | 98 |99 | Total Renting 100 | | 101 |102 | Status 103 | | 104 |
|---|---|---|---|---|
|
110 |
111 |
133 |
112 |
118 |
119 |
124 |
125 |
129 | {data.name}
130 |
131 |
132 | |
134 |
135 | 136 | {data.profession} 137 | 138 | |
139 |
140 | 141 | {data.joined} 142 | 143 | |
144 |
145 | 146 | {data.rentings} 147 | 148 | |
149 | 150 | {data.status == "Unblocked" && ( 151 | 152 | 156 | Active 157 | 158 | )} 159 | 160 | {data.status == "Blocked" && ( 161 | 162 | 166 | Inactive 167 | 168 | )} 169 | | 170 |
209 | {player?.nationality} 210 |
211 |25 | Designed to make scouting easier{" "} 26 |
27 |61 | This is a wider card with supporting text below as a natural 62 | content. 63 |
64 |99 | This is a wider card with supporting text below as a natural 100 | content. 101 |
102 |137 | This is a wider card with supporting text below as a natural 138 | content. 139 |
140 |174 | This is a wider card with supporting text below as a natural 175 | content. 176 |
177 |212 | This is a wider card with supporting text below as a natural 213 | content. 214 |
215 |209 | {dateFormat(msg.createdAt, "shortTime")} 210 |
211 |233 | {dateFormat(msg.createdAt, "shortTime")} 234 |
235 |
36 | {scout?.fullname}
55 | {/* 56 | 70 | */} 71 |Scout
74 |{scoutData?.nationality}
75 |218 | Player scouts or physical scouts evaluate the talent of 219 | footballers with a view to signing them on a professional 220 | contract for their employers. Some scouts focus on discovering 221 | promising young players and future stars, others are employed to 222 | run the rule on potential signings. Smaller clubs might only 223 | scout within their own country region, while larger and richer 224 | clubs can have extensive international scouting networks 225 |
226 |109 | A football scout attends football matches on the behalf of clubs to 110 | collect intelligence 111 |
112 | 361 | {/* */} 369 |The stuff you were looking for doesn't exist 190 |
191 | 193 | Retry 194 |