blob: 98bc7eea1901f9ea4952b90db77b8aa7ffea27be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
import React from 'react';
import Card from './components/Card';
import './style.css';
function App() {
return (
<div className="App">
<h1>WiFi Card</h1>
<p className="tag">
Print a simple card with your WiFi login details. Tape it to the fridge, keep it in your wallet, etc.
</p>
<p className="tag">
Your WiFi information is never sent to the server.
No tracking, analytics, or fingerprinting are used on this website.
View the <a href="https://github.com/bndw/wifi-card">source code</a>.
</p>
<Card />
</div>
);
}
export default App;
|