├── .gitignore ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── rmdir ├── src ├── App.js ├── all.min.css ├── components │ ├── functions │ │ ├── AnimationTitles.js │ │ └── CountDown.js │ └── navbar │ │ ├── Navbar.js │ │ └── navbar.css ├── images │ ├── bohdan-d-fh6o-XkVQG8-unsplash.webp │ ├── developers │ │ ├── logo-01.png │ │ ├── logo-02.png │ │ ├── logo-03.png │ │ ├── logo-04.png │ │ ├── logo-05.png │ │ ├── logo-06.png │ │ ├── logo-07.png │ │ ├── logo-08.png │ │ ├── logo-09.png │ │ ├── logo-10.png │ │ ├── logo-11.png │ │ ├── logo-12.png │ │ └── logo-13.png │ ├── illustration │ │ ├── 01.webp │ │ ├── 02.webp │ │ ├── 03.webp │ │ └── 04.webp │ ├── john-o-nolan-6f_ANCcbj3o-unsplash.webp │ ├── julia-solonina-ci19YINguoc-unsplash.webp │ ├── logo │ │ ├── Vector-1.png │ │ ├── Vector.png │ │ └── logo.png │ ├── partners │ │ ├── blockport.png │ │ ├── fantom.png │ │ ├── onfido.png │ │ ├── qa.png │ │ ├── stellar.png │ │ └── tr.png │ ├── properties │ │ ├── david-kovalenko-9-qFzV9a2Zc-unsplash.webp │ │ ├── house_big-1.webp │ │ ├── house_big.webp │ │ ├── pexels-rachel-claire-8112843 1.webp │ │ ├── pexels-stan-krotov-12737424 1.webp │ │ └── picture-of-a-wooden-building-in-the-forest.webp │ └── theater-amazonas-manaus.webp ├── index.js ├── pages │ ├── AboutUs.js │ ├── Developers.js │ ├── Footer.js │ ├── Header.js │ ├── Join.js │ ├── Partners.js │ ├── Properties.js │ └── Subscribe.js └── style.css ├── webfonts ├── fa-brands-400.ttf ├── fa-brands-400.woff2 ├── fa-regular-400.ttf ├── fa-regular-400.woff2 ├── fa-solid-900.ttf ├── fa-solid-900.woff2 ├── fa-v4compatibility.ttf └── fa-v4compatibility.woff2 └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/.gitignore -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/public/robots.txt -------------------------------------------------------------------------------- /rmdir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/App.js -------------------------------------------------------------------------------- /src/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/all.min.css -------------------------------------------------------------------------------- /src/components/functions/AnimationTitles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/components/functions/AnimationTitles.js -------------------------------------------------------------------------------- /src/components/functions/CountDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/components/functions/CountDown.js -------------------------------------------------------------------------------- /src/components/navbar/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/components/navbar/Navbar.js -------------------------------------------------------------------------------- /src/components/navbar/navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/components/navbar/navbar.css -------------------------------------------------------------------------------- /src/images/bohdan-d-fh6o-XkVQG8-unsplash.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/bohdan-d-fh6o-XkVQG8-unsplash.webp -------------------------------------------------------------------------------- /src/images/developers/logo-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/developers/logo-01.png -------------------------------------------------------------------------------- /src/images/developers/logo-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/developers/logo-02.png -------------------------------------------------------------------------------- /src/images/developers/logo-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/developers/logo-03.png -------------------------------------------------------------------------------- /src/images/developers/logo-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/developers/logo-04.png -------------------------------------------------------------------------------- /src/images/developers/logo-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/developers/logo-05.png -------------------------------------------------------------------------------- /src/images/developers/logo-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/developers/logo-06.png -------------------------------------------------------------------------------- /src/images/developers/logo-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/developers/logo-07.png -------------------------------------------------------------------------------- /src/images/developers/logo-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/developers/logo-08.png -------------------------------------------------------------------------------- /src/images/developers/logo-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/developers/logo-09.png -------------------------------------------------------------------------------- /src/images/developers/logo-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/developers/logo-10.png -------------------------------------------------------------------------------- /src/images/developers/logo-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/developers/logo-11.png -------------------------------------------------------------------------------- /src/images/developers/logo-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/developers/logo-12.png -------------------------------------------------------------------------------- /src/images/developers/logo-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/developers/logo-13.png -------------------------------------------------------------------------------- /src/images/illustration/01.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/illustration/01.webp -------------------------------------------------------------------------------- /src/images/illustration/02.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/illustration/02.webp -------------------------------------------------------------------------------- /src/images/illustration/03.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/illustration/03.webp -------------------------------------------------------------------------------- /src/images/illustration/04.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/illustration/04.webp -------------------------------------------------------------------------------- /src/images/john-o-nolan-6f_ANCcbj3o-unsplash.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/john-o-nolan-6f_ANCcbj3o-unsplash.webp -------------------------------------------------------------------------------- /src/images/julia-solonina-ci19YINguoc-unsplash.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/julia-solonina-ci19YINguoc-unsplash.webp -------------------------------------------------------------------------------- /src/images/logo/Vector-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/logo/Vector-1.png -------------------------------------------------------------------------------- /src/images/logo/Vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/logo/Vector.png -------------------------------------------------------------------------------- /src/images/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/logo/logo.png -------------------------------------------------------------------------------- /src/images/partners/blockport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/partners/blockport.png -------------------------------------------------------------------------------- /src/images/partners/fantom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/partners/fantom.png -------------------------------------------------------------------------------- /src/images/partners/onfido.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/partners/onfido.png -------------------------------------------------------------------------------- /src/images/partners/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/partners/qa.png -------------------------------------------------------------------------------- /src/images/partners/stellar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/partners/stellar.png -------------------------------------------------------------------------------- /src/images/partners/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/partners/tr.png -------------------------------------------------------------------------------- /src/images/properties/david-kovalenko-9-qFzV9a2Zc-unsplash.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/properties/david-kovalenko-9-qFzV9a2Zc-unsplash.webp -------------------------------------------------------------------------------- /src/images/properties/house_big-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/properties/house_big-1.webp -------------------------------------------------------------------------------- /src/images/properties/house_big.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/properties/house_big.webp -------------------------------------------------------------------------------- /src/images/properties/pexels-rachel-claire-8112843 1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/properties/pexels-rachel-claire-8112843 1.webp -------------------------------------------------------------------------------- /src/images/properties/pexels-stan-krotov-12737424 1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/properties/pexels-stan-krotov-12737424 1.webp -------------------------------------------------------------------------------- /src/images/properties/picture-of-a-wooden-building-in-the-forest.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/properties/picture-of-a-wooden-building-in-the-forest.webp -------------------------------------------------------------------------------- /src/images/theater-amazonas-manaus.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/images/theater-amazonas-manaus.webp -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/AboutUs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/pages/AboutUs.js -------------------------------------------------------------------------------- /src/pages/Developers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/pages/Developers.js -------------------------------------------------------------------------------- /src/pages/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/pages/Footer.js -------------------------------------------------------------------------------- /src/pages/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/pages/Header.js -------------------------------------------------------------------------------- /src/pages/Join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/pages/Join.js -------------------------------------------------------------------------------- /src/pages/Partners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/pages/Partners.js -------------------------------------------------------------------------------- /src/pages/Properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/pages/Properties.js -------------------------------------------------------------------------------- /src/pages/Subscribe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/pages/Subscribe.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/src/style.css -------------------------------------------------------------------------------- /webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yousef-Alfares/ProHouse/HEAD/yarn.lock --------------------------------------------------------------------------------