-
Notifications
You must be signed in to change notification settings - Fork 1
/
whisper.tsx
44 lines (40 loc) · 1.17 KB
/
whisper.tsx
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
32
33
34
35
36
37
38
39
40
41
42
43
44
import Head from 'next/head'
import Image from 'next/image'
import styles from './styles/Home.module.css'
const Whisper = ({children}: {children: any}) => {
return (
<div className={styles.container}>
<Head>
<title>Whisper</title>
<link rel="icon" href="/favicon.ico" />
</Head>
<div className={styles.header}>
<a href="/" className={styles.title}>
Whisper
</a>
<div className={styles.subtitle}>frictionless end-to-end encrypted secret sharing</div>
</div>
<main className={styles.main}>
{children}
</main>
<footer className={styles.footer}>
<div>
<a
href="https://www.convex.dev/"
target="_blank"
rel="noopener noreferrer"
>
Powered by{' '}
<span className={styles.logo}>
<Image src="/convex.svg" alt="Convex Logo" width={90} height={18} />
</span>
</a>
<a href="https://github.com/ldanilek/whisper/blob/main/README.md">
Open sourced <span className={styles.footerLink}>on Github</span>
</a>
</div>
</footer>
</div>
)
}
export default Whisper