├── .gitignore ├── .vscode └── settings.json ├── COMPETITION.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── TODOs.md ├── api.md ├── jsconfig.json ├── package.json ├── public ├── _redirects ├── favicon │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon-114x114.png │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-144x144.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-57x57.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-72x72.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── mstile-150x150.png │ ├── safari-pinned-tab.svg │ └── site.webmanifest ├── index.html ├── logo-white.png ├── poster.jpg └── robots.txt ├── sh.exe.stackdump ├── src ├── .eslintrc.js ├── App.js ├── assets │ ├── IEEE-pub-logo.jpg │ ├── fonts │ │ ├── PT │ │ │ └── PTSans-Regular.ttf │ │ └── Rubik │ │ │ └── Rubik-Medium.ttf │ ├── images │ │ ├── event.jpg │ │ ├── logo-white.jpg │ │ ├── logo-white.png │ │ ├── logo.jpg │ │ ├── logo.png │ │ ├── page_not_found.svg │ │ ├── placeholder.png │ │ ├── poster.jpg │ │ ├── poster1.jpg │ │ ├── structure-1200.jpg │ │ ├── structure-2500.jpg │ │ └── structure-650.jpg │ └── video │ │ └── intro.mp4 ├── globals │ ├── contexts │ │ └── theme.context.js │ ├── core.service.js │ ├── cssVarsPonyfill.js │ └── routes.js ├── index.js ├── modules │ ├── blog │ │ ├── components │ │ │ ├── CategoriesFilter │ │ │ │ ├── index.js │ │ │ │ └── style.module.css │ │ │ ├── SearchFilter │ │ │ │ ├── index.js │ │ │ │ └── style.module.css │ │ │ ├── blogCard │ │ │ │ ├── index.js │ │ │ │ └── style.module.css │ │ │ ├── blogListPage │ │ │ │ ├── index.js │ │ │ │ └── style.module.css │ │ │ └── singleBlogPage │ │ │ │ ├── index.js │ │ │ │ └── style.module.css │ │ └── services │ │ │ ├── blog.service.js │ │ │ └── category.service.js │ ├── contact │ │ ├── components │ │ │ ├── form │ │ │ │ ├── index.js │ │ │ │ └── style.module.css │ │ │ ├── icon │ │ │ │ ├── index.js │ │ │ │ └── style.module.css │ │ │ └── page │ │ │ │ ├── index.js │ │ │ │ └── style.module.css │ │ └── services │ │ │ └── contact.service.js │ ├── events │ │ ├── components │ │ │ ├── ApplyButton │ │ │ │ ├── ApplyButton.js │ │ │ │ └── style.module.css │ │ │ ├── EventDetails │ │ │ │ ├── index.js │ │ │ │ └── style.module.css │ │ │ ├── Gallery │ │ │ │ ├── index.js │ │ │ │ └── style.module.css │ │ │ ├── PopupContent │ │ │ │ ├── PopupContent.js │ │ │ │ └── style.module.css │ │ │ ├── eventCard │ │ │ │ ├── index.js │ │ │ │ └── style.module.css │ │ │ ├── eventsListPage │ │ │ │ ├── index.js │ │ │ │ └── style.module.css │ │ │ ├── eventsSection │ │ │ │ ├── index.js │ │ │ │ └── style.module.css │ │ │ └── singleEventPage │ │ │ │ ├── index.js │ │ │ │ └── style.module.css │ │ └── services │ │ │ └── events.service.js │ ├── static-pages │ │ ├── about │ │ │ └── components │ │ │ │ ├── page │ │ │ │ ├── components │ │ │ │ │ ├── IEEEAZHARSection │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── style.module.css │ │ │ │ │ ├── IEEESection │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── style.module.css │ │ │ │ │ ├── header │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── style.module.css │ │ │ │ │ └── structure │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── style.module.css │ │ │ │ ├── index.js │ │ │ │ └── style.module.css │ │ │ │ ├── section │ │ │ │ ├── index.js │ │ │ │ └── style.module.css │ │ │ │ └── video │ │ │ │ └── index.js │ │ └── home │ │ │ ├── components │ │ │ ├── bestMembers │ │ │ │ ├── index.js │ │ │ │ └── style.module.css │ │ │ ├── intro │ │ │ │ ├── index.js │ │ │ │ └── style.module.css │ │ │ └── page │ │ │ │ ├── index.js │ │ │ │ └── style.module.css │ │ │ └── services │ │ │ └── members.service.js │ └── teamServices │ │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── singleServiceSection.test.js.snap │ │ └── singleServiceSection.test.js │ │ ├── components │ │ ├── singleServicePage │ │ │ ├── index.js │ │ │ └── style.module.css │ │ └── teamServicesSection │ │ │ ├── index.js │ │ │ └── style.module.css │ │ └── store │ │ └── services.json ├── serviceWorker.js ├── shared │ ├── Image-loader │ │ ├── index.js │ │ └── style.css │ ├── Input.js │ ├── __tests__ │ │ ├── footer.test.js │ │ ├── header.test.js │ │ ├── newsLetter.test.js │ │ ├── sideDrawer.test.js │ │ └── themeBtn.test.js │ ├── footer │ │ ├── index.js │ │ └── style.module.css │ ├── header │ │ ├── index.js │ │ └── style.css │ ├── layout │ │ ├── index.js │ │ └── style.css │ ├── lazy-image │ │ └── index.js │ ├── loading │ │ └── index.js │ ├── newsletterForm │ │ ├── index.js │ │ └── style.module.css │ ├── notFoundPage │ │ ├── index.js │ │ └── style.module.css │ ├── services │ │ ├── date.service.js │ │ ├── image.service.js │ │ ├── language.service.js │ │ ├── newsletter.service.js │ │ └── validation.service.js │ ├── sideDrawer │ │ ├── index.js │ │ └── style.module.css │ └── theme-button │ │ ├── index.js │ │ └── style.css └── styles.css └── style-guide.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /COMPETITION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/COMPETITION.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/README.md -------------------------------------------------------------------------------- /TODOs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/TODOs.md -------------------------------------------------------------------------------- /api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/api.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/package.json -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/public/_redirects -------------------------------------------------------------------------------- /public/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/public/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/public/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/public/favicon/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/public/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/public/favicon/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/public/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/public/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/public/favicon/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/public/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/public/favicon/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/public/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/public/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/public/favicon/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/public/favicon/favicon.ico -------------------------------------------------------------------------------- /public/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/public/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /public/favicon/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/public/favicon/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/public/favicon/site.webmanifest -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/public/logo-white.png -------------------------------------------------------------------------------- /public/poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/public/poster.jpg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/public/robots.txt -------------------------------------------------------------------------------- /sh.exe.stackdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/sh.exe.stackdump -------------------------------------------------------------------------------- /src/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/.eslintrc.js -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/App.js -------------------------------------------------------------------------------- /src/assets/IEEE-pub-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/assets/IEEE-pub-logo.jpg -------------------------------------------------------------------------------- /src/assets/fonts/PT/PTSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/assets/fonts/PT/PTSans-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Rubik/Rubik-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/assets/fonts/Rubik/Rubik-Medium.ttf -------------------------------------------------------------------------------- /src/assets/images/event.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/assets/images/event.jpg -------------------------------------------------------------------------------- /src/assets/images/logo-white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/assets/images/logo-white.jpg -------------------------------------------------------------------------------- /src/assets/images/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/assets/images/logo-white.png -------------------------------------------------------------------------------- /src/assets/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/assets/images/logo.jpg -------------------------------------------------------------------------------- /src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/assets/images/logo.png -------------------------------------------------------------------------------- /src/assets/images/page_not_found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/assets/images/page_not_found.svg -------------------------------------------------------------------------------- /src/assets/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/assets/images/placeholder.png -------------------------------------------------------------------------------- /src/assets/images/poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/assets/images/poster.jpg -------------------------------------------------------------------------------- /src/assets/images/poster1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/assets/images/poster1.jpg -------------------------------------------------------------------------------- /src/assets/images/structure-1200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/assets/images/structure-1200.jpg -------------------------------------------------------------------------------- /src/assets/images/structure-2500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/assets/images/structure-2500.jpg -------------------------------------------------------------------------------- /src/assets/images/structure-650.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/assets/images/structure-650.jpg -------------------------------------------------------------------------------- /src/assets/video/intro.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/assets/video/intro.mp4 -------------------------------------------------------------------------------- /src/globals/contexts/theme.context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/globals/contexts/theme.context.js -------------------------------------------------------------------------------- /src/globals/core.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/globals/core.service.js -------------------------------------------------------------------------------- /src/globals/cssVarsPonyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/globals/cssVarsPonyfill.js -------------------------------------------------------------------------------- /src/globals/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/globals/routes.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/index.js -------------------------------------------------------------------------------- /src/modules/blog/components/CategoriesFilter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/blog/components/CategoriesFilter/index.js -------------------------------------------------------------------------------- /src/modules/blog/components/CategoriesFilter/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/blog/components/CategoriesFilter/style.module.css -------------------------------------------------------------------------------- /src/modules/blog/components/SearchFilter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/blog/components/SearchFilter/index.js -------------------------------------------------------------------------------- /src/modules/blog/components/SearchFilter/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/blog/components/SearchFilter/style.module.css -------------------------------------------------------------------------------- /src/modules/blog/components/blogCard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/blog/components/blogCard/index.js -------------------------------------------------------------------------------- /src/modules/blog/components/blogCard/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/blog/components/blogCard/style.module.css -------------------------------------------------------------------------------- /src/modules/blog/components/blogListPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/blog/components/blogListPage/index.js -------------------------------------------------------------------------------- /src/modules/blog/components/blogListPage/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/blog/components/blogListPage/style.module.css -------------------------------------------------------------------------------- /src/modules/blog/components/singleBlogPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/blog/components/singleBlogPage/index.js -------------------------------------------------------------------------------- /src/modules/blog/components/singleBlogPage/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/blog/components/singleBlogPage/style.module.css -------------------------------------------------------------------------------- /src/modules/blog/services/blog.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/blog/services/blog.service.js -------------------------------------------------------------------------------- /src/modules/blog/services/category.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/blog/services/category.service.js -------------------------------------------------------------------------------- /src/modules/contact/components/form/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/contact/components/form/index.js -------------------------------------------------------------------------------- /src/modules/contact/components/form/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/contact/components/form/style.module.css -------------------------------------------------------------------------------- /src/modules/contact/components/icon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/contact/components/icon/index.js -------------------------------------------------------------------------------- /src/modules/contact/components/icon/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/contact/components/icon/style.module.css -------------------------------------------------------------------------------- /src/modules/contact/components/page/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/contact/components/page/index.js -------------------------------------------------------------------------------- /src/modules/contact/components/page/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/contact/components/page/style.module.css -------------------------------------------------------------------------------- /src/modules/contact/services/contact.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/contact/services/contact.service.js -------------------------------------------------------------------------------- /src/modules/events/components/ApplyButton/ApplyButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/events/components/ApplyButton/ApplyButton.js -------------------------------------------------------------------------------- /src/modules/events/components/ApplyButton/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/events/components/ApplyButton/style.module.css -------------------------------------------------------------------------------- /src/modules/events/components/EventDetails/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/events/components/EventDetails/index.js -------------------------------------------------------------------------------- /src/modules/events/components/EventDetails/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/events/components/EventDetails/style.module.css -------------------------------------------------------------------------------- /src/modules/events/components/Gallery/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/events/components/Gallery/index.js -------------------------------------------------------------------------------- /src/modules/events/components/Gallery/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/events/components/Gallery/style.module.css -------------------------------------------------------------------------------- /src/modules/events/components/PopupContent/PopupContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/events/components/PopupContent/PopupContent.js -------------------------------------------------------------------------------- /src/modules/events/components/PopupContent/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/events/components/PopupContent/style.module.css -------------------------------------------------------------------------------- /src/modules/events/components/eventCard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/events/components/eventCard/index.js -------------------------------------------------------------------------------- /src/modules/events/components/eventCard/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/events/components/eventCard/style.module.css -------------------------------------------------------------------------------- /src/modules/events/components/eventsListPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/events/components/eventsListPage/index.js -------------------------------------------------------------------------------- /src/modules/events/components/eventsListPage/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/events/components/eventsListPage/style.module.css -------------------------------------------------------------------------------- /src/modules/events/components/eventsSection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/events/components/eventsSection/index.js -------------------------------------------------------------------------------- /src/modules/events/components/eventsSection/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/events/components/eventsSection/style.module.css -------------------------------------------------------------------------------- /src/modules/events/components/singleEventPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/events/components/singleEventPage/index.js -------------------------------------------------------------------------------- /src/modules/events/components/singleEventPage/style.module.css: -------------------------------------------------------------------------------- 1 | .event-cover { 2 | max-height: 40rem; 3 | } 4 | -------------------------------------------------------------------------------- /src/modules/events/services/events.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/events/services/events.service.js -------------------------------------------------------------------------------- /src/modules/static-pages/about/components/page/components/IEEEAZHARSection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/static-pages/about/components/page/components/IEEEAZHARSection/index.js -------------------------------------------------------------------------------- /src/modules/static-pages/about/components/page/components/IEEEAZHARSection/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/static-pages/about/components/page/components/IEEEAZHARSection/style.module.css -------------------------------------------------------------------------------- /src/modules/static-pages/about/components/page/components/IEEESection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/static-pages/about/components/page/components/IEEESection/index.js -------------------------------------------------------------------------------- /src/modules/static-pages/about/components/page/components/IEEESection/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/static-pages/about/components/page/components/IEEESection/style.module.css -------------------------------------------------------------------------------- /src/modules/static-pages/about/components/page/components/header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/static-pages/about/components/page/components/header/index.js -------------------------------------------------------------------------------- /src/modules/static-pages/about/components/page/components/header/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/static-pages/about/components/page/components/header/style.module.css -------------------------------------------------------------------------------- /src/modules/static-pages/about/components/page/components/structure/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/static-pages/about/components/page/components/structure/index.js -------------------------------------------------------------------------------- /src/modules/static-pages/about/components/page/components/structure/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/static-pages/about/components/page/components/structure/style.module.css -------------------------------------------------------------------------------- /src/modules/static-pages/about/components/page/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/static-pages/about/components/page/index.js -------------------------------------------------------------------------------- /src/modules/static-pages/about/components/page/style.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/static-pages/about/components/section/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/static-pages/about/components/section/index.js -------------------------------------------------------------------------------- /src/modules/static-pages/about/components/section/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/static-pages/about/components/section/style.module.css -------------------------------------------------------------------------------- /src/modules/static-pages/about/components/video/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/static-pages/about/components/video/index.js -------------------------------------------------------------------------------- /src/modules/static-pages/home/components/bestMembers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/static-pages/home/components/bestMembers/index.js -------------------------------------------------------------------------------- /src/modules/static-pages/home/components/bestMembers/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/static-pages/home/components/bestMembers/style.module.css -------------------------------------------------------------------------------- /src/modules/static-pages/home/components/intro/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/static-pages/home/components/intro/index.js -------------------------------------------------------------------------------- /src/modules/static-pages/home/components/intro/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/static-pages/home/components/intro/style.module.css -------------------------------------------------------------------------------- /src/modules/static-pages/home/components/page/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/static-pages/home/components/page/index.js -------------------------------------------------------------------------------- /src/modules/static-pages/home/components/page/style.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/static-pages/home/services/members.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/static-pages/home/services/members.service.js -------------------------------------------------------------------------------- /src/modules/teamServices/__tests__/__snapshots__/singleServiceSection.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/teamServices/__tests__/__snapshots__/singleServiceSection.test.js.snap -------------------------------------------------------------------------------- /src/modules/teamServices/__tests__/singleServiceSection.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/teamServices/__tests__/singleServiceSection.test.js -------------------------------------------------------------------------------- /src/modules/teamServices/components/singleServicePage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/teamServices/components/singleServicePage/index.js -------------------------------------------------------------------------------- /src/modules/teamServices/components/singleServicePage/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/teamServices/components/singleServicePage/style.module.css -------------------------------------------------------------------------------- /src/modules/teamServices/components/teamServicesSection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/teamServices/components/teamServicesSection/index.js -------------------------------------------------------------------------------- /src/modules/teamServices/components/teamServicesSection/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/teamServices/components/teamServicesSection/style.module.css -------------------------------------------------------------------------------- /src/modules/teamServices/store/services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/modules/teamServices/store/services.json -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/shared/Image-loader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/Image-loader/index.js -------------------------------------------------------------------------------- /src/shared/Image-loader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/Image-loader/style.css -------------------------------------------------------------------------------- /src/shared/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/Input.js -------------------------------------------------------------------------------- /src/shared/__tests__/footer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/__tests__/footer.test.js -------------------------------------------------------------------------------- /src/shared/__tests__/header.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/__tests__/header.test.js -------------------------------------------------------------------------------- /src/shared/__tests__/newsLetter.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/__tests__/newsLetter.test.js -------------------------------------------------------------------------------- /src/shared/__tests__/sideDrawer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/__tests__/sideDrawer.test.js -------------------------------------------------------------------------------- /src/shared/__tests__/themeBtn.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/__tests__/themeBtn.test.js -------------------------------------------------------------------------------- /src/shared/footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/footer/index.js -------------------------------------------------------------------------------- /src/shared/footer/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/footer/style.module.css -------------------------------------------------------------------------------- /src/shared/header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/header/index.js -------------------------------------------------------------------------------- /src/shared/header/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/header/style.css -------------------------------------------------------------------------------- /src/shared/layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/layout/index.js -------------------------------------------------------------------------------- /src/shared/layout/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/layout/style.css -------------------------------------------------------------------------------- /src/shared/lazy-image/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/lazy-image/index.js -------------------------------------------------------------------------------- /src/shared/loading/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/loading/index.js -------------------------------------------------------------------------------- /src/shared/newsletterForm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/newsletterForm/index.js -------------------------------------------------------------------------------- /src/shared/newsletterForm/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/newsletterForm/style.module.css -------------------------------------------------------------------------------- /src/shared/notFoundPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/notFoundPage/index.js -------------------------------------------------------------------------------- /src/shared/notFoundPage/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/notFoundPage/style.module.css -------------------------------------------------------------------------------- /src/shared/services/date.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/services/date.service.js -------------------------------------------------------------------------------- /src/shared/services/image.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/services/image.service.js -------------------------------------------------------------------------------- /src/shared/services/language.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/services/language.service.js -------------------------------------------------------------------------------- /src/shared/services/newsletter.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/services/newsletter.service.js -------------------------------------------------------------------------------- /src/shared/services/validation.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/services/validation.service.js -------------------------------------------------------------------------------- /src/shared/sideDrawer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/sideDrawer/index.js -------------------------------------------------------------------------------- /src/shared/sideDrawer/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/sideDrawer/style.module.css -------------------------------------------------------------------------------- /src/shared/theme-button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/theme-button/index.js -------------------------------------------------------------------------------- /src/shared/theme-button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/shared/theme-button/style.css -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/src/styles.css -------------------------------------------------------------------------------- /style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IEEE-AlAzhar/Official-Website/HEAD/style-guide.md --------------------------------------------------------------------------------