Skip to content

Commit ceca031

Browse files
committed
Add All Components
0 parents  commit ceca031

26 files changed

+18350
-0
lines changed

.firebase/hosting.YnVpbGQ.cache

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
favicon.ico,499162500000,eae62e993eb980ec8a25058c39d5a51feab118bd2100c4deebb2a9c158ec11f9
2+
manifest.json,499162500000,aff3449bdc238776f5d6d967f19ec491b36aed5fb7f23ccff6500736fd58494a
3+
robots.txt,499162500000,bfe106a3fb878dc83461c86818bf74fc1bdc7f28538ba613cd3e775516ce8b49
4+
asset-manifest.json,1620071309050,aeb24d0b64890442b55428a9c1ce911772a1d223c224c8799e3fd05f72d57afa
5+
index.html,1620071309050,53e90d91d0f249eb740e9aacb8d4f324ef70bef99334b26629b052bc26881d58
6+
static/css/main.b7cd9fbb.chunk.css,1620071309050,918982b5805ee829c403cc6a52dfc953be8978928b1f5220683eb6467604aef8
7+
static/css/main.b7cd9fbb.chunk.css.map,1620071309066,4a49d9ab1f435069c6fcef858f7640d94f62a59f2c9b774ff5bea227bc3c31c5
8+
static/js/2.e63cc05a.chunk.js.LICENSE.txt,1620071309066,b15a15acfd643366904fefddcda88549b9b1c9250ec72c82f1d2bf4a88d68f1f
9+
static/js/3.ee02cc37.chunk.js,1620071309066,262459729af83cea182673f9e0dea76f59a4fa54a27fdf3075e2c736fdc1e122
10+
static/js/3.ee02cc37.chunk.js.map,1620071309066,abf3bacce637cfb2c2c0542f367f8a0be5f18fcbd8b040263c31864f6971b66f
11+
static/js/main.a09abd8e.chunk.js,1620071309050,e5c7e23563e553665ff38fc05e376be199b8646106a93ac30410ff3dabc7ab38
12+
static/js/main.a09abd8e.chunk.js.map,1620071309066,0a594c76d090cf87fe1b961e070278466917dadb32f907a4b9585f72e7416466
13+
static/js/runtime-main.8a1a5153.js,1620071309066,754f0ae55768c48257d1f8c4bac2105e9d2f67ae5148f3372a457da42222885f
14+
static/js/runtime-main.8a1a5153.js.map,1620071309066,1dc8243e1bbed1ea85dc9a5716a2c7f9ed8a401509bd08c793468569170ff2b9
15+
static/js/2.e63cc05a.chunk.js,1620071309066,60abb163390d7cc844fdce19b36e64e5a696f0c4860b6b4f18996ce9927694f6
16+
static/js/2.e63cc05a.chunk.js.map,1620071309066,dadf8d5feb6bc653aab232b5381f2e9fefc0db2e3c748b224a57523859293713

.firebaserc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"projects": {
3+
"default": "googlclone-v1"
4+
}
5+
}

.gitignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/build
13+
14+
# misc
15+
.DS_Store
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*

README.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Google Clone with ReactJS
2+
3+
A small web app that imitate the desktop web version of google site, you can search whatever you want.
4+
5+
## Google Clone Demo Link
6+
7+
You can watch the site here
8+
[Click Me](https://googlclone-v1.web.app/)
9+
10+
## Topics
11+
12+
- Context API -Redux
13+
- Material UI
14+
- React Router
15+
- Google Custom Search API
16+
- Firebase to setup the app to connect to google
17+
- Responsive Design
18+
- Deploy the App LIVE on Firebase
19+
20+
## Author
21+
22+
Özge Coşkun Gürsucu (codermother)

firebase.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"hosting": {
3+
"public": "build",
4+
"ignore": [
5+
"firebase.json",
6+
"**/.*",
7+
"**/node_modules/**"
8+
],
9+
"rewrites": [
10+
{
11+
"source": "**",
12+
"destination": "/index.html"
13+
}
14+
]
15+
}
16+
}

0 commit comments

Comments
 (0)