Skip to content

Commit baaf70a

Browse files
committed
architecture changed
1 parent 8416bbf commit baaf70a

24 files changed

+1983
-8724
lines changed

.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
SASS_PATH=./node_modules

package-lock.json

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

package.json

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,25 @@
33
"version": "0.1.0",
44
"private": true,
55
"dependencies": {
6+
"@carbon/grid": "^10.8.3",
7+
"@carbon/icons-react": "^10.8.2",
8+
"@emotion/core": "^10.0.28",
9+
"@emotion/styled": "^10.0.27",
610
"@testing-library/jest-dom": "^4.2.4",
711
"@testing-library/react": "^9.3.2",
812
"@testing-library/user-event": "^7.1.2",
13+
"carbon-components": "^10.9.3",
14+
"carbon-components-react": "^7.9.3",
15+
"core-js": "^3.6.4",
916
"gestalt": "^0.112.0",
17+
"node-sass": "^4.13.1",
1018
"react": "^16.12.0",
1119
"react-dom": "^16.12.0",
1220
"react-roughviz": "^0.1.8",
13-
"react-scripts": "3.3.0"
21+
"react-router-dom": "^5.1.2",
22+
"react-scripts": "3.3.0",
23+
"tailwind.macro": "^1.0.0-alpha.10",
24+
"tailwindcss": "^1.2.0"
1425
},
1526
"scripts": {
1627
"start": "react-scripts start",

public/index.html

Lines changed: 32 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,23 @@
11
<!DOCTYPE html>
22
<html lang="en">
3-
<head>
4-
<meta charset="utf-8" />
5-
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
6-
<meta name="viewport" content="width=device-width, initial-scale=1" />
7-
<meta name="theme-color" content="#000000" />
8-
<meta
9-
name="description"
10-
content="Web site created using create-react-app"
11-
/>
12-
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
133

14-
<link
15-
href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900"
16-
rel="stylesheet"
17-
/>
18-
<link
19-
rel="stylesheet"
20-
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
21-
/>
22-
<!--
4+
<head>
5+
<meta charset="utf-8" />
6+
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
7+
<meta name="viewport" content="width=device-width, initial-scale=1" />
8+
<meta name="theme-color" content="#000000" />
9+
<meta name="description" content="Web site created using create-react-app" />
10+
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
11+
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900" rel="stylesheet" />
12+
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
13+
<!--
2314
manifest.json provides metadata used when your web app is installed on a
2415
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
2516
-->
26-
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
27-
<!--
17+
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
18+
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
19+
20+
<!--
2821
Notice the use of %PUBLIC_URL% in the tags above.
2922
It will be replaced with the URL of the `public` folder during the build.
3023
Only files inside the `public` folder can be referenced from the HTML.
@@ -33,18 +26,15 @@
3326
work correctly both with client-side routing and a non-root public URL.
3427
Learn how to configure a non-root public URL by running `npm run build`.
3528
-->
36-
<link
37-
rel="stylesheet"
38-
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
39-
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
40-
crossorigin="anonymous"
41-
/>
42-
<title>JS Daily</title>
43-
</head>
44-
<body>
45-
<noscript>You need to enable JavaScript to run this app.</noscript>
46-
<div id="root"></div>
47-
<!--
29+
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
30+
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous" />
31+
<title>SEO Dashboard</title>
32+
</head>
33+
34+
<body>
35+
<noscript>You need to enable JavaScript to run this app.</noscript>
36+
<div id="root"></div>
37+
<!--
4838
This HTML file is a template.
4939
If you open it directly in the browser, you will see an empty page.
5040
@@ -54,20 +44,12 @@
5444
To begin the development, run `npm start` or `yarn start`.
5545
To create a production bundle, use `npm run build` or `yarn build`.
5646
-->
57-
</body>
58-
<script
59-
src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
60-
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n"
61-
crossorigin="anonymous"
62-
></script>
63-
<script
64-
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
65-
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
66-
crossorigin="anonymous"
67-
></script>
68-
<script
69-
src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
70-
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
71-
crossorigin="anonymous"
72-
></script>
73-
</html>
47+
</body>
48+
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
49+
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
50+
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
51+
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
52+
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
53+
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
54+
55+
</html>

0 commit comments

Comments
 (0)