Skip to content

Commit c8729ef

Browse files
committed
(v0.1.0-alpha) Analytics + SpeedInsights
Added Vercel's very own Analytics and SpeedInsights cuz I wanna doxx the visitors :hehe:
1 parent 4949198 commit c8729ef

File tree

4 files changed

+101
-1
lines changed

4 files changed

+101
-1
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
11
# Cipher
22
A YSWS concept stressing on Cybersecurity & Cryptography!
3+
4+
**CIPHER**
5+
6+
YS: A techy app/game focused on cryptography, security, puzzles, CTFs and other techy stuff that ill think later (Cybersecurity related)
7+
WS: yubikeys, hackduckys, Laptops, wifi modules, etc
8+
9+
PS: There'll be some vulnerable sites (that ill make) and the first person to crack those gets bonus prizes

package-lock.json

Lines changed: 82 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13+
"@vercel/analytics": "^2.0.1",
14+
"@vercel/speed-insights": "^2.0.0",
1315
"react": "^19.2.4",
1416
"react-dom": "^19.2.4"
1517
},

src/App.jsx

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

3+
import { Analytics } from "@vercel/analytics/react";
4+
import { SpeedInsights } from "@vercel/speed-insights/react"
5+
36
function App() {
47

58
return (
69
<>
7-
<h1>Cipher</h1>
10+
<div className="app">
11+
12+
<h1>Cipher</h1>
13+
14+
<Analytics />
15+
<SpeedInsights />
16+
</div>
817
</>
918
)
1019
}

0 commit comments

Comments
 (0)