Skip to content

Commit 6c7b393

Browse files
committed
(v0.1.1-alpha) Landing + Favicon
Added a landing page (nothing in it tho) added variables.css and other simple css changes. Added the updated favicon tooo!
1 parent c8729ef commit 6c7b393

File tree

8 files changed

+43
-2
lines changed

8 files changed

+43
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
## TODOS:
3+
4+
- [ ] Fix logo and make it PERFECT
5+
6+
## CHANGELOGS:

public/favicon.svg

Lines changed: 14 additions & 1 deletion
Loading

src/App.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@ import './styles/App.css'
22

33
import { Analytics } from "@vercel/analytics/react";
44
import { SpeedInsights } from "@vercel/speed-insights/react"
5+
import Landing from "./routes/landing.jsx";
56

67
function App() {
78

89
return (
910
<>
1011
<div className="app">
1112

12-
<h1>Cipher</h1>
13+
<Landing />
1314

1415
<Analytics />
1516
<SpeedInsights />

src/main.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { StrictMode } from 'react'
22
import { createRoot } from 'react-dom/client'
33
import './styles/index.css'
4+
import './styles/variables.css'
45
import App from './App.jsx'
56

67
createRoot(document.getElementById('root')).render(

src/routes/landing.jsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import "../styles/routes/landing.css";
2+
3+
function Landing() {
4+
return (
5+
<>
6+
</>
7+
)
8+
}
9+
10+
export default Landing

src/styles/index.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
body {
2+
background-color: var(--background-color);
3+
4+
margin: 0;
5+
}

src/styles/routes/landing.css

Whitespace-only changes.

src/styles/variables.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
:root {
2+
color-scheme: dark !important;
3+
4+
--background-color: #0F141C;
5+
}

0 commit comments

Comments
 (0)