Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit d746106

Browse files
email newsletter project #19
1 parent bc3bb98 commit d746106

File tree

17 files changed

+25232
-2
lines changed

17 files changed

+25232
-2
lines changed

newsletter-react-web-app-project/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
![under_construction](https://user-images.githubusercontent.com/37651620/93677983-a7942e00-facc-11ea-8b6d-b57e73dc73bf.png)
1+
![screencapture-newsletter-react-app-netlify-app-2020-10-28-20_59_09](https://user-images.githubusercontent.com/37651620/97455969-80007300-1960-11eb-8be3-876c8f875c1e.png)
22

3-
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
3+
## It's Live 🎉 Visit here ==> https://newsletter-react-app.netlify.app/
44

55
## Available Scripts
66

newsletter-react-web-app-project/package-lock.json

Lines changed: 14113 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
"name": "newsletter-react-web-app-project",
3+
"version": "0.1.0",
4+
"private": true,
5+
"dependencies": {
6+
"@testing-library/jest-dom": "^4.2.4",
7+
"@testing-library/react": "^9.3.2",
8+
"@testing-library/user-event": "^7.1.2",
9+
"classnames": "^2.2.6",
10+
"dotenv": "^8.2.0",
11+
"env-cmd": "^10.1.0",
12+
"formik": "^2.2.0",
13+
"react": "^16.14.0",
14+
"react-dom": "^16.14.0",
15+
"react-mailchimp-form": "^1.0.2",
16+
"react-mailchimp-subscribe": "^2.1.0",
17+
"react-router-dom": "^5.2.0",
18+
"react-scripts": "^3.4.4",
19+
"react-subscribe-card": "^2.1.4",
20+
"scrollreveal": "^4.0.7"
21+
},
22+
"scripts": {
23+
"start": "react-scripts start",
24+
"build": "react-scripts build",
25+
"test": "react-scripts test",
26+
"eject": "react-scripts eject"
27+
},
28+
"eslintConfig": {
29+
"extends": "react-app"
30+
},
31+
"browserslist": {
32+
"production": [
33+
">0.2%",
34+
"not dead",
35+
"not op_mini all"
36+
],
37+
"development": [
38+
"last 1 chrome version",
39+
"last 1 firefox version",
40+
"last 1 safari version"
41+
]
42+
}
43+
}
Binary file not shown.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<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" />
13+
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
14+
<title>Newsletter App</title>
15+
</head>
16+
<body>
17+
<noscript>You need to enable JavaScript to run this app.</noscript>
18+
<div id="root"></div>
19+
</body>
20+
</html>
5.22 KB
Loading
9.44 KB
Loading
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"short_name": "React App",
3+
"name": "Create React App Sample",
4+
"icons": [
5+
{
6+
"src": "favicon.ico",
7+
"sizes": "64x64 32x32 24x24 16x16",
8+
"type": "image/x-icon"
9+
},
10+
{
11+
"src": "logo192.png",
12+
"type": "image/png",
13+
"sizes": "192x192"
14+
},
15+
{
16+
"src": "logo512.png",
17+
"type": "image/png",
18+
"sizes": "512x512"
19+
}
20+
],
21+
"start_url": ".",
22+
"display": "standalone",
23+
"theme_color": "#000000",
24+
"background_color": "#ffffff"
25+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# https://www.robotstxt.org/robotstxt.html
2+
User-agent: *
3+
Disallow:
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import React from 'react';
2+
import Newsletter from "./components/Newsletter";
3+
import "./styles/App.css";
4+
import newslettersvg from "./assets/newsletter.svg";
5+
6+
7+
8+
const App = () => {
9+
return (
10+
<div className="centerEverything">
11+
<Newsletter/>
12+
<img src={newslettersvg} alt="React Logo" />
13+
</div>
14+
);
15+
}
16+
17+
export default App;
18+

0 commit comments

Comments
 (0)