├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── public ├── favicon.ico └── index.html ├── src ├── App.js ├── Assets │ ├── S3Icon.js │ ├── S3Icon2.js │ ├── S3Icon3.js │ ├── Section1.5 │ │ ├── Hand.png │ │ ├── Phone.png │ │ └── Responsive.png │ ├── Section1 │ │ ├── Logo.js │ │ └── Logo2.js │ ├── Section2 │ │ ├── Mobile.png │ │ ├── Phone.png │ │ └── hand.png │ ├── Section3.5 │ │ ├── hand.png │ │ └── phone.png │ ├── Section3 │ │ ├── GroupSchedule.png │ │ └── Hand.png │ ├── Section4 │ │ ├── Bottom.png │ │ ├── Eye1.js │ │ ├── Eye2.js │ │ └── Top.png │ ├── Section6 │ │ ├── Hand.png │ │ └── Phone.png │ ├── Section7 │ │ └── StoreBtn.png │ ├── fonts │ │ ├── Font.js │ │ ├── LICENSE_OFL.txt │ │ ├── NotoSansKR-Black.otf │ │ ├── NotoSansKR-Black.woff │ │ ├── NotoSansKR-Black.woff2 │ │ ├── NotoSansKR-Bold.otf │ │ ├── NotoSansKR-Bold.woff │ │ ├── NotoSansKR-Bold.woff2 │ │ ├── NotoSansKR-DemiLight.otf │ │ ├── NotoSansKR-DemiLight.woff │ │ ├── NotoSansKR-DemiLight.woff2 │ │ ├── NotoSansKR-Light.otf │ │ ├── NotoSansKR-Light.woff │ │ ├── NotoSansKR-Light.woff2 │ │ ├── NotoSansKR-Medium.otf │ │ ├── NotoSansKR-Medium.woff │ │ ├── NotoSansKR-Medium.woff2 │ │ ├── NotoSansKR-Regular.otf │ │ ├── NotoSansKR-Regular.woff │ │ ├── NotoSansKR-Regular.woff2 │ │ ├── NotoSansKR-Thin.otf │ │ ├── NotoSansKR-Thin.woff │ │ └── NotoSansKR-Thin.woff2 │ └── index.js ├── Components │ ├── Section1.5 │ │ ├── Section1_5.js │ │ └── style.js │ ├── Section1 │ │ ├── Section1.js │ │ └── style.js │ ├── Section2 │ │ ├── Section2.js │ │ └── style.js │ ├── Section3.5 │ │ ├── Section3_5.js │ │ └── style.js │ ├── Section3 │ │ ├── Section3.js │ │ └── style.js │ ├── Section4 │ │ ├── Section4.js │ │ └── style.js │ ├── Section5 │ │ ├── Section5.js │ │ └── style.js │ ├── Section6 │ │ ├── Section6.js │ │ └── style.js │ ├── Section7 │ │ ├── Section7.js │ │ └── style.js │ └── index.js ├── Hooks │ ├── Fadeout.js │ └── Scroll.js ├── fonts │ ├── Font.js │ ├── LICENSE_OFL.txt │ ├── NotoSansKR-Black.otf │ ├── NotoSansKR-Black.woff │ ├── NotoSansKR-Black.woff2 │ ├── NotoSansKR-Bold.otf │ ├── NotoSansKR-Bold.woff │ ├── NotoSansKR-Bold.woff2 │ ├── NotoSansKR-DemiLight.otf │ ├── NotoSansKR-DemiLight.woff │ ├── NotoSansKR-DemiLight.woff2 │ ├── NotoSansKR-Light.otf │ ├── NotoSansKR-Light.woff │ ├── NotoSansKR-Light.woff2 │ ├── NotoSansKR-Medium.otf │ ├── NotoSansKR-Medium.woff │ ├── NotoSansKR-Medium.woff2 │ ├── NotoSansKR-Regular.otf │ ├── NotoSansKR-Regular.woff │ ├── NotoSansKR-Regular.woff2 │ ├── NotoSansKR-Thin.otf │ ├── NotoSansKR-Thin.woff │ └── NotoSansKR-Thin.woff2 ├── index.js ├── pages │ └── index.js ├── reportWebVitals.js └── setupTests.js └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/App.js -------------------------------------------------------------------------------- /src/Assets/S3Icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/S3Icon.js -------------------------------------------------------------------------------- /src/Assets/S3Icon2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/S3Icon2.js -------------------------------------------------------------------------------- /src/Assets/S3Icon3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/S3Icon3.js -------------------------------------------------------------------------------- /src/Assets/Section1.5/Hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/Section1.5/Hand.png -------------------------------------------------------------------------------- /src/Assets/Section1.5/Phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/Section1.5/Phone.png -------------------------------------------------------------------------------- /src/Assets/Section1.5/Responsive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/Section1.5/Responsive.png -------------------------------------------------------------------------------- /src/Assets/Section1/Logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/Section1/Logo.js -------------------------------------------------------------------------------- /src/Assets/Section1/Logo2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/Section1/Logo2.js -------------------------------------------------------------------------------- /src/Assets/Section2/Mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/Section2/Mobile.png -------------------------------------------------------------------------------- /src/Assets/Section2/Phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/Section2/Phone.png -------------------------------------------------------------------------------- /src/Assets/Section2/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/Section2/hand.png -------------------------------------------------------------------------------- /src/Assets/Section3.5/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/Section3.5/hand.png -------------------------------------------------------------------------------- /src/Assets/Section3.5/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/Section3.5/phone.png -------------------------------------------------------------------------------- /src/Assets/Section3/GroupSchedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/Section3/GroupSchedule.png -------------------------------------------------------------------------------- /src/Assets/Section3/Hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/Section3/Hand.png -------------------------------------------------------------------------------- /src/Assets/Section4/Bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/Section4/Bottom.png -------------------------------------------------------------------------------- /src/Assets/Section4/Eye1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/Section4/Eye1.js -------------------------------------------------------------------------------- /src/Assets/Section4/Eye2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/Section4/Eye2.js -------------------------------------------------------------------------------- /src/Assets/Section4/Top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/Section4/Top.png -------------------------------------------------------------------------------- /src/Assets/Section6/Hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/Section6/Hand.png -------------------------------------------------------------------------------- /src/Assets/Section6/Phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/Section6/Phone.png -------------------------------------------------------------------------------- /src/Assets/Section7/StoreBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/Section7/StoreBtn.png -------------------------------------------------------------------------------- /src/Assets/fonts/Font.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/fonts/Font.js -------------------------------------------------------------------------------- /src/Assets/fonts/LICENSE_OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/fonts/LICENSE_OFL.txt -------------------------------------------------------------------------------- /src/Assets/fonts/NotoSansKR-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/fonts/NotoSansKR-Black.otf -------------------------------------------------------------------------------- /src/Assets/fonts/NotoSansKR-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/fonts/NotoSansKR-Black.woff -------------------------------------------------------------------------------- /src/Assets/fonts/NotoSansKR-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/fonts/NotoSansKR-Black.woff2 -------------------------------------------------------------------------------- /src/Assets/fonts/NotoSansKR-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/fonts/NotoSansKR-Bold.otf -------------------------------------------------------------------------------- /src/Assets/fonts/NotoSansKR-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/fonts/NotoSansKR-Bold.woff -------------------------------------------------------------------------------- /src/Assets/fonts/NotoSansKR-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/fonts/NotoSansKR-Bold.woff2 -------------------------------------------------------------------------------- /src/Assets/fonts/NotoSansKR-DemiLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/fonts/NotoSansKR-DemiLight.otf -------------------------------------------------------------------------------- /src/Assets/fonts/NotoSansKR-DemiLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/fonts/NotoSansKR-DemiLight.woff -------------------------------------------------------------------------------- /src/Assets/fonts/NotoSansKR-DemiLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/fonts/NotoSansKR-DemiLight.woff2 -------------------------------------------------------------------------------- /src/Assets/fonts/NotoSansKR-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/fonts/NotoSansKR-Light.otf -------------------------------------------------------------------------------- /src/Assets/fonts/NotoSansKR-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/fonts/NotoSansKR-Light.woff -------------------------------------------------------------------------------- /src/Assets/fonts/NotoSansKR-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/fonts/NotoSansKR-Light.woff2 -------------------------------------------------------------------------------- /src/Assets/fonts/NotoSansKR-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/fonts/NotoSansKR-Medium.otf -------------------------------------------------------------------------------- /src/Assets/fonts/NotoSansKR-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/fonts/NotoSansKR-Medium.woff -------------------------------------------------------------------------------- /src/Assets/fonts/NotoSansKR-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/fonts/NotoSansKR-Medium.woff2 -------------------------------------------------------------------------------- /src/Assets/fonts/NotoSansKR-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/fonts/NotoSansKR-Regular.otf -------------------------------------------------------------------------------- /src/Assets/fonts/NotoSansKR-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/fonts/NotoSansKR-Regular.woff -------------------------------------------------------------------------------- /src/Assets/fonts/NotoSansKR-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/fonts/NotoSansKR-Regular.woff2 -------------------------------------------------------------------------------- /src/Assets/fonts/NotoSansKR-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/fonts/NotoSansKR-Thin.otf -------------------------------------------------------------------------------- /src/Assets/fonts/NotoSansKR-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/fonts/NotoSansKR-Thin.woff -------------------------------------------------------------------------------- /src/Assets/fonts/NotoSansKR-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/fonts/NotoSansKR-Thin.woff2 -------------------------------------------------------------------------------- /src/Assets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Assets/index.js -------------------------------------------------------------------------------- /src/Components/Section1.5/Section1_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Components/Section1.5/Section1_5.js -------------------------------------------------------------------------------- /src/Components/Section1.5/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Components/Section1.5/style.js -------------------------------------------------------------------------------- /src/Components/Section1/Section1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Components/Section1/Section1.js -------------------------------------------------------------------------------- /src/Components/Section1/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Components/Section1/style.js -------------------------------------------------------------------------------- /src/Components/Section2/Section2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Components/Section2/Section2.js -------------------------------------------------------------------------------- /src/Components/Section2/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Components/Section2/style.js -------------------------------------------------------------------------------- /src/Components/Section3.5/Section3_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Components/Section3.5/Section3_5.js -------------------------------------------------------------------------------- /src/Components/Section3.5/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Components/Section3.5/style.js -------------------------------------------------------------------------------- /src/Components/Section3/Section3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Components/Section3/Section3.js -------------------------------------------------------------------------------- /src/Components/Section3/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Components/Section3/style.js -------------------------------------------------------------------------------- /src/Components/Section4/Section4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Components/Section4/Section4.js -------------------------------------------------------------------------------- /src/Components/Section4/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Components/Section4/style.js -------------------------------------------------------------------------------- /src/Components/Section5/Section5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Components/Section5/Section5.js -------------------------------------------------------------------------------- /src/Components/Section5/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Components/Section5/style.js -------------------------------------------------------------------------------- /src/Components/Section6/Section6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Components/Section6/Section6.js -------------------------------------------------------------------------------- /src/Components/Section6/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Components/Section6/style.js -------------------------------------------------------------------------------- /src/Components/Section7/Section7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Components/Section7/Section7.js -------------------------------------------------------------------------------- /src/Components/Section7/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Components/Section7/style.js -------------------------------------------------------------------------------- /src/Components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Components/index.js -------------------------------------------------------------------------------- /src/Hooks/Fadeout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Hooks/Fadeout.js -------------------------------------------------------------------------------- /src/Hooks/Scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/Hooks/Scroll.js -------------------------------------------------------------------------------- /src/fonts/Font.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/fonts/Font.js -------------------------------------------------------------------------------- /src/fonts/LICENSE_OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/fonts/LICENSE_OFL.txt -------------------------------------------------------------------------------- /src/fonts/NotoSansKR-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/fonts/NotoSansKR-Black.otf -------------------------------------------------------------------------------- /src/fonts/NotoSansKR-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/fonts/NotoSansKR-Black.woff -------------------------------------------------------------------------------- /src/fonts/NotoSansKR-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/fonts/NotoSansKR-Black.woff2 -------------------------------------------------------------------------------- /src/fonts/NotoSansKR-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/fonts/NotoSansKR-Bold.otf -------------------------------------------------------------------------------- /src/fonts/NotoSansKR-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/fonts/NotoSansKR-Bold.woff -------------------------------------------------------------------------------- /src/fonts/NotoSansKR-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/fonts/NotoSansKR-Bold.woff2 -------------------------------------------------------------------------------- /src/fonts/NotoSansKR-DemiLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/fonts/NotoSansKR-DemiLight.otf -------------------------------------------------------------------------------- /src/fonts/NotoSansKR-DemiLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/fonts/NotoSansKR-DemiLight.woff -------------------------------------------------------------------------------- /src/fonts/NotoSansKR-DemiLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/fonts/NotoSansKR-DemiLight.woff2 -------------------------------------------------------------------------------- /src/fonts/NotoSansKR-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/fonts/NotoSansKR-Light.otf -------------------------------------------------------------------------------- /src/fonts/NotoSansKR-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/fonts/NotoSansKR-Light.woff -------------------------------------------------------------------------------- /src/fonts/NotoSansKR-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/fonts/NotoSansKR-Light.woff2 -------------------------------------------------------------------------------- /src/fonts/NotoSansKR-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/fonts/NotoSansKR-Medium.otf -------------------------------------------------------------------------------- /src/fonts/NotoSansKR-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/fonts/NotoSansKR-Medium.woff -------------------------------------------------------------------------------- /src/fonts/NotoSansKR-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/fonts/NotoSansKR-Medium.woff2 -------------------------------------------------------------------------------- /src/fonts/NotoSansKR-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/fonts/NotoSansKR-Regular.otf -------------------------------------------------------------------------------- /src/fonts/NotoSansKR-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/fonts/NotoSansKR-Regular.woff -------------------------------------------------------------------------------- /src/fonts/NotoSansKR-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/fonts/NotoSansKR-Regular.woff2 -------------------------------------------------------------------------------- /src/fonts/NotoSansKR-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/fonts/NotoSansKR-Thin.otf -------------------------------------------------------------------------------- /src/fonts/NotoSansKR-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/fonts/NotoSansKR-Thin.woff -------------------------------------------------------------------------------- /src/fonts/NotoSansKR-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/fonts/NotoSansKR-Thin.woff2 -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neulsom-EZY/EZY-client/HEAD/yarn.lock --------------------------------------------------------------------------------