├── .gitignore ├── README.md ├── package.json ├── public ├── Canela-Regular.woff2 ├── FontsFree-Net-Branch.woff2 ├── SuisseIntl-Regular.woff2 ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.css ├── App.js ├── App.test.js ├── components │ ├── Five │ │ ├── Five.jsx │ │ └── five.css │ ├── Four │ │ ├── Four.jsx │ │ └── four.css │ ├── Home │ │ ├── Home.jsx │ │ └── home.css │ ├── Second │ │ ├── Second.jsx │ │ └── second.css │ ├── Third │ │ ├── Third.jsx │ │ └── third.css │ └── img │ │ ├── Chaniru.lk.png │ │ ├── Thumbs.db │ │ ├── boy.png │ │ ├── crown.png │ │ ├── fav.png │ │ ├── graf.png │ │ ├── hover.png │ │ ├── merch.mp4 │ │ ├── noise.gif │ │ ├── pic1.png │ │ ├── ranboo001.png │ │ ├── ranboo002.png │ │ ├── screenshot.png │ │ ├── sta.png │ │ ├── t.png │ │ ├── text (2).png │ │ └── text.png ├── index.css ├── index.js ├── logo.svg ├── reportWebVitals.js └── setupTests.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/package.json -------------------------------------------------------------------------------- /public/Canela-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/public/Canela-Regular.woff2 -------------------------------------------------------------------------------- /public/FontsFree-Net-Branch.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/public/FontsFree-Net-Branch.woff2 -------------------------------------------------------------------------------- /public/SuisseIntl-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/public/SuisseIntl-Regular.woff2 -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/Five/Five.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/Five/Five.jsx -------------------------------------------------------------------------------- /src/components/Five/five.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/Five/five.css -------------------------------------------------------------------------------- /src/components/Four/Four.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/Four/Four.jsx -------------------------------------------------------------------------------- /src/components/Four/four.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/Four/four.css -------------------------------------------------------------------------------- /src/components/Home/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/Home/Home.jsx -------------------------------------------------------------------------------- /src/components/Home/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/Home/home.css -------------------------------------------------------------------------------- /src/components/Second/Second.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/Second/Second.jsx -------------------------------------------------------------------------------- /src/components/Second/second.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/Second/second.css -------------------------------------------------------------------------------- /src/components/Third/Third.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/Third/Third.jsx -------------------------------------------------------------------------------- /src/components/Third/third.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/Third/third.css -------------------------------------------------------------------------------- /src/components/img/Chaniru.lk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/img/Chaniru.lk.png -------------------------------------------------------------------------------- /src/components/img/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/img/Thumbs.db -------------------------------------------------------------------------------- /src/components/img/boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/img/boy.png -------------------------------------------------------------------------------- /src/components/img/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/img/crown.png -------------------------------------------------------------------------------- /src/components/img/fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/img/fav.png -------------------------------------------------------------------------------- /src/components/img/graf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/img/graf.png -------------------------------------------------------------------------------- /src/components/img/hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/img/hover.png -------------------------------------------------------------------------------- /src/components/img/merch.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/img/merch.mp4 -------------------------------------------------------------------------------- /src/components/img/noise.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/img/noise.gif -------------------------------------------------------------------------------- /src/components/img/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/img/pic1.png -------------------------------------------------------------------------------- /src/components/img/ranboo001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/img/ranboo001.png -------------------------------------------------------------------------------- /src/components/img/ranboo002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/img/ranboo002.png -------------------------------------------------------------------------------- /src/components/img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/img/screenshot.png -------------------------------------------------------------------------------- /src/components/img/sta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/img/sta.png -------------------------------------------------------------------------------- /src/components/img/t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/img/t.png -------------------------------------------------------------------------------- /src/components/img/text (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/img/text (2).png -------------------------------------------------------------------------------- /src/components/img/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/components/img/text.png -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chanirulk/Awwwards-remake-RANBOO-FASHION/HEAD/yarn.lock --------------------------------------------------------------------------------