├── .github └── workflows │ └── blank.yml ├── .gitignore ├── README.md └── w2w ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── LinkedIn.png ├── api └── MovieSource.js ├── components ├── box │ ├── box.js │ └── boxList.js ├── navbar │ ├── NavbarElements.js │ └── navIndex.js └── search │ ├── SearchBar.js │ └── search.css ├── entertainment.js ├── footer.js ├── index.css ├── index.js ├── reportWebVitals.js ├── serviceWorker.js ├── setupTests.js ├── stylesheet └── style.sass └── webpages └── home.js /.github/workflows/blank.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/.github/workflows/blank.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Legendary-winners 2 | Creating Full stack web applications 3 | -------------------------------------------------------------------------------- /w2w/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/.gitignore -------------------------------------------------------------------------------- /w2w/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/README.md -------------------------------------------------------------------------------- /w2w/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/package-lock.json -------------------------------------------------------------------------------- /w2w/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/package.json -------------------------------------------------------------------------------- /w2w/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/public/favicon.ico -------------------------------------------------------------------------------- /w2w/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/public/index.html -------------------------------------------------------------------------------- /w2w/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/public/logo192.png -------------------------------------------------------------------------------- /w2w/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/public/logo512.png -------------------------------------------------------------------------------- /w2w/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/public/manifest.json -------------------------------------------------------------------------------- /w2w/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/public/robots.txt -------------------------------------------------------------------------------- /w2w/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/src/App.css -------------------------------------------------------------------------------- /w2w/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/src/App.js -------------------------------------------------------------------------------- /w2w/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/src/App.test.js -------------------------------------------------------------------------------- /w2w/src/LinkedIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/src/LinkedIn.png -------------------------------------------------------------------------------- /w2w/src/api/MovieSource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/src/api/MovieSource.js -------------------------------------------------------------------------------- /w2w/src/components/box/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/src/components/box/box.js -------------------------------------------------------------------------------- /w2w/src/components/box/boxList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/src/components/box/boxList.js -------------------------------------------------------------------------------- /w2w/src/components/navbar/NavbarElements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/src/components/navbar/NavbarElements.js -------------------------------------------------------------------------------- /w2w/src/components/navbar/navIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/src/components/navbar/navIndex.js -------------------------------------------------------------------------------- /w2w/src/components/search/SearchBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/src/components/search/SearchBar.js -------------------------------------------------------------------------------- /w2w/src/components/search/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/src/components/search/search.css -------------------------------------------------------------------------------- /w2w/src/entertainment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/src/entertainment.js -------------------------------------------------------------------------------- /w2w/src/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/src/footer.js -------------------------------------------------------------------------------- /w2w/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/src/index.css -------------------------------------------------------------------------------- /w2w/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/src/index.js -------------------------------------------------------------------------------- /w2w/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/src/reportWebVitals.js -------------------------------------------------------------------------------- /w2w/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/src/serviceWorker.js -------------------------------------------------------------------------------- /w2w/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/src/setupTests.js -------------------------------------------------------------------------------- /w2w/src/stylesheet/style.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/src/stylesheet/style.sass -------------------------------------------------------------------------------- /w2w/src/webpages/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedYasser-gu/Legendary-winners/HEAD/w2w/src/webpages/home.js --------------------------------------------------------------------------------