Skip to content

Commit 9e787d5

Browse files
committed
Added Logo and text on main content
Also changed theme color to primary rather than automatic.
1 parent 7732e4f commit 9e787d5

File tree

12 files changed

+98
-36
lines changed

12 files changed

+98
-36
lines changed

public/index.html

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@
88
<meta
99
name="viewport"
1010
content="width=device-width, initial-scale=1" />
11-
<meta
12-
name="theme-color"
13-
content="#000000" />
1411
<meta
1512
name="description"
1613
content="Web site created using create-react-app" />
@@ -38,15 +35,5 @@
3835
<body>
3936
<noscript>You need to enable JavaScript to run this app.</noscript>
4037
<div id="root"></div>
41-
<!--
42-
This HTML file is a template.
43-
If you open it directly in the browser, you will see an empty page.
44-
45-
You can add webfonts, meta tags, or analytics to this file.
46-
The build step will place the bundled scripts into the <body> tag.
47-
48-
To begin the development, run `npm start` or `yarn start`.
49-
To create a production bundle, use `npm run build` or `yarn build`.
50-
-->
5138
</body>
5239
</html>

public/manifest.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"short_name": "React App",
3-
"name": "Create React App Sample",
2+
"short_name": "Darkvoid",
3+
"name": "Darkvoid - Road to MVP",
44
"icons": [
55
{
66
"src": "favicon.ico",
@@ -20,6 +20,6 @@
2020
],
2121
"start_url": ".",
2222
"display": "standalone",
23-
"theme_color": "#000000",
24-
"background_color": "#ffffff"
25-
}
23+
"theme_color": "#925bff",
24+
"background_color": "#000000"
25+
}

src/App.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import './App.css';
22
import { Header } from './components/Header';
3+
import { Main } from './components/Main';
34

45
function App() {
56
return (
@@ -8,6 +9,7 @@ function App() {
89
style={{ position: 'relative', minHeight: '100vh' }}>
910
<div className="background-gradient" />
1011
<Header />
12+
<Main />
1113
</div>
1214
);
1315
}

src/assets/icons/Full Logo.svg

Lines changed: 5 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)