Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei Neagoie authored and Andrei Neagoie committed Aug 30, 2023
1 parent 9bff4ab commit 61e3b29
Show file tree
Hide file tree
Showing 8 changed files with 3,615 additions and 3,026 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*


1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ Final project for ZTM course
You can grab Clarifai API key [here](https://www.clarifai.com/)

*visist https://zerotomastery.io/ for more*

6,630 changes: 3,607 additions & 3,023 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"particles-bg": "^2.5.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-parallax-tilt": "^1.7.121",
"react-parallax-tilt": "^1.7.164",
"react-scripts": "^5.0.1",
"tachyons": "^4.12.0"
},
Expand Down
1 change: 1 addition & 0 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<!DOCTYPE html>

<html lang="en">
<head>
<meta charset="utf-8">
Expand Down
1 change: 1 addition & 0 deletions public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@
"theme_color": "#000000",
"background_color": "#ffffff"
}

4 changes: 2 additions & 2 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import './App.css';

//You must add your own API key here from Clarifai.
const app = new Clarifai.App({
apiKey: 'YOUR API KEY HERE'
apiKey: 'e2fb89963b30494794bbc5598035f138'
});

// No Longer need this. Updated to particles-bg
Expand All @@ -36,7 +36,7 @@ class App extends Component {
input: '',
imageUrl: '',
box: {},
route: 'signin',
route: 'home',
isSignedIn: false,
user: {
id: '',
Expand Down
1 change: 1 addition & 0 deletions src/components/Signin/Signin.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React from 'react';


class Signin extends React.Component {
constructor(props) {
super(props);
Expand Down

0 comments on commit 61e3b29

Please sign in to comment.