blob: 3832de199ad24a1dca5e1f0387042c03d402a36b (
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
28
29
30
|
import React from 'react';
import { Card } from './components/Card';
import './style.css';
import logo from '../src/images/wifi.png';
function App() {
return (
<div className="App">
<h1>
<img alt="icon" src={logo} width="32" height="32" />
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;
|