Skip to content

Commit 75f9baa

Browse files
.
1 parent 1066689 commit 75f9baa

File tree

110 files changed

+11705
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+11705
-0
lines changed

.gitignore

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,79 @@
11
#Subdomain
22
beta
3+
<<<<<<< .merge_file_a23036
34

45
#meta
56
sitemap.xml
67
robots.txt
78
pinterest-daebd.html
89
google8c70041bccf18478.html
10+
=======
11+
12+
# Logs
13+
logs
14+
*.log
15+
npm-debug.log*
16+
yarn-debug.log*
17+
yarn-error.log*
18+
lerna-debug.log*
19+
20+
# Diagnostic reports (https://nodejs.org/api/report.html)
21+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
22+
23+
# Runtime data
24+
pids
25+
*.pid
26+
*.seed
27+
*.pid.lock
28+
29+
# Directory for instrumented libs generated by jscoverage/JSCover
30+
lib-cov
31+
32+
# Coverage directory used by tools like istanbul
33+
coverage
34+
*.lcov
35+
36+
# nyc test coverage
37+
.nyc_output
38+
39+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
40+
.grunt
41+
42+
# Bower dependency directory (https://bower.io/)
43+
bower_components
44+
45+
# node-waf configuration
46+
.lock-wscript
47+
48+
# Compiled binary addons (https://nodejs.org/api/addons.html)
49+
build/Release
50+
51+
# Dependency directories
52+
node_modules/
53+
jspm_packages/
54+
55+
# TypeScript v1 declaration files
56+
typings/
57+
58+
# TypeScript cache
59+
*.tsbuildinfo
60+
61+
# dependencies
62+
/node_modules
63+
/.pnp
64+
.pnp.js
65+
66+
# testing
67+
/coverage
68+
69+
70+
# misc
71+
.DS_Store
72+
.env.local
73+
.env.development.local
74+
.env.test.local
75+
.env.production.local
76+
>>>>>>> .merge_file_a18356
977

1078
# Logs
1179
logs

.htaccess

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<<<<<<< .merge_file_a24364
12
<IfModule mod_deflate.c>
23
AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml \
34
text/css application/x-javascript application/javascript
@@ -59,3 +60,9 @@ RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?eximstudio.com/.*$ [NC]
5960
RewriteRule .*\.(jpeg|gif|png|bmp|tiff|avi|mpeg|mpg|wma|mov|zip|rar|exe|mp3|pdf|swf|psd|txt|htm)$ https://eximstudio.com [R,NC]
6061
# DO NOT REMOVE THIS LINE AND THE LINES ABOVE cSYIvLnsEP:HOTLINKID
6162

63+
=======
64+
RewriteEngine on
65+
66+
RewriteCond %{REQUEST_URI} !^/build
67+
RewriteRule ^(.*)$ /build/$1 [NC,L]
68+
>>>>>>> .merge_file_a24964

README.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,50 @@
1+
<<<<<<< .merge_file_a23240
12
# website
3+
=======
4+
# Getting Started with Create React App
5+
6+
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
7+
8+
## Available Scripts
9+
10+
In the project directory, you can run:
11+
12+
### `yarn start`
13+
14+
Runs the app in the development mode.\
15+
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
16+
17+
The page will reload if you make edits.\
18+
You will also see any lint errors in the console.
19+
20+
### `yarn test`
21+
22+
Launches the test runner in the interactive watch mode.\
23+
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
24+
25+
### `yarn build`
26+
27+
Builds the app for production to the `build` folder.\
28+
It correctly bundles React in production mode and optimizes the build for the best performance.
29+
30+
The build is minified and the filenames include the hashes.\
31+
Your app is ready to be deployed!
32+
33+
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
34+
35+
### `yarn eject`
36+
37+
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
38+
39+
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
40+
41+
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
42+
43+
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
44+
45+
## Learn More
46+
47+
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
48+
49+
To learn React, check out the [React documentation](https://reactjs.org/).
50+
>>>>>>> .merge_file_a14740

build/.htaccess

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<IfModule mod_rewrite.c>
2+
3+
RewriteEngine On
4+
RewriteBase /
5+
RewriteRule ^index\.html$ - [L]
6+
RewriteCond %{REQUEST_FILENAME} !-f
7+
RewriteCond %{REQUEST_FILENAME} !-d
8+
RewriteCond %{REQUEST_FILENAME} !-l
9+
RewriteRule . /index.html [L]
10+
11+
</IfModule>

build/static/css/main.4f43f4d3.chunk.css

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/static/css/main.4f43f4d3.chunk.css.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/static/js/2.e70e3207.chunk.js

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
/*
2+
object-assign
3+
(c) Sindre Sorhus
4+
@license MIT
5+
*/
6+
7+
/** @license React v0.20.2
8+
* scheduler.production.min.js
9+
*
10+
* Copyright (c) Facebook, Inc. and its affiliates.
11+
*
12+
* This source code is licensed under the MIT license found in the
13+
* LICENSE file in the root directory of this source tree.
14+
*/
15+
16+
/** @license React v16.13.1
17+
* react-is.production.min.js
18+
*
19+
* Copyright (c) Facebook, Inc. and its affiliates.
20+
*
21+
* This source code is licensed under the MIT license found in the
22+
* LICENSE file in the root directory of this source tree.
23+
*/
24+
25+
/** @license React v17.0.2
26+
* react-dom.production.min.js
27+
*
28+
* Copyright (c) Facebook, Inc. and its affiliates.
29+
*
30+
* This source code is licensed under the MIT license found in the
31+
* LICENSE file in the root directory of this source tree.
32+
*/
33+
34+
/** @license React v17.0.2
35+
* react-jsx-runtime.production.min.js
36+
*
37+
* Copyright (c) Facebook, Inc. and its affiliates.
38+
*
39+
* This source code is licensed under the MIT license found in the
40+
* LICENSE file in the root directory of this source tree.
41+
*/
42+
43+
/** @license React v17.0.2
44+
* react.production.min.js
45+
*
46+
* Copyright (c) Facebook, Inc. and its affiliates.
47+
*
48+
* This source code is licensed under the MIT license found in the
49+
* LICENSE file in the root directory of this source tree.
50+
*/

build/static/js/2.e70e3207.chunk.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/static/js/3.68308a17.chunk.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)