Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add cute avatar to site #21

Merged
merged 1 commit into from
Aug 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed site/public/avatar-shadow.png
Binary file not shown.
Binary file modified site/public/avatar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified site/public/favicon.ico
Binary file not shown.
Binary file modified site/public/logo192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified site/public/logo512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 6 additions & 6 deletions site/src/App.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.App {
text-align: center;
color: #ffeba0;
color: #FF572E;
background-color: #000000b8;
}

Expand All @@ -22,17 +22,17 @@
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: #ffeba0;
color: #FF572E;
}

.App-link {
color: #ffeba0;
color: #FF572E;
}

.App button {
padding: 10px 20px;
font-size: 1em;
color: #ffeba0;
color: #FF572E;
background-color: #181818b8;
border: none;
border-radius: 5px;
Expand All @@ -57,7 +57,7 @@
display: flex;
justify-content: space-between;
padding: 20px;
color: #ffeba0;
color: #FF572E;
align-items: stretch;
justify-content: center;
max-width: 75vw;
Expand Down Expand Up @@ -100,7 +100,7 @@
justify-content: space-between;
padding: 20px;
background-color: #00000000b8;
color: #ffeba0;
color: #FF572E;
align-items: stretch;
justify-content: center;
max-width: 75vw;
Expand Down
2 changes: 1 addition & 1 deletion site/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function App() {
<div className="App">
<header className="App-header">
<h1>evo.ninja</h1>
<img src="avatar-shadow.png" alt="Evo" width={200} />
<img src="avatar.png" alt="Evo" width={200} />
<h2>An AI that never stops learning.</h2>
<button onClick={scrollToFeatures}>Learn More</button>
</header>
Expand Down
Loading