blob: 08956684d801e3b04eff38f7038e0e390e339362 (
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
31
|
import React from 'react';
import { Card } from './components/Card';
import './style.css';
function App() {
return (
<div className="App">
<h1>
<span role="img" aria-label="antenna-bars">
📶
</span>
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;
|