Skip to content

Commit 1c01eae

Browse files
committed
feat: add Fliq landing page for fliq.linkforty.com
Vite + React + Tailwind landing page with four routes: - / — hero, how it works, download CTAs - /privacy — privacy policy covering push storage and device registration - /terms — terms of service with ephemeral messaging disclaimers - /s — share link fallback for users without the app Includes Vercel config with SPA rewrites and .well-known files for iOS Universal Links and Android App Links.
1 parent 910b5a1 commit 1c01eae

27 files changed

Lines changed: 3465 additions & 0 deletions

web/index.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Fliq - Secret Messages</title>
7+
<meta name="description" content="Send secret messages that only the recipient can reveal. Flick your phone to uncover." />
8+
<meta name="theme-color" content="#19192d" />
9+
<meta property="og:title" content="Fliq - Secret Messages" />
10+
<meta property="og:description" content="Send secret messages that only the recipient can reveal. Flick your phone to uncover." />
11+
<meta property="og:type" content="website" />
12+
<meta property="og:url" content="https://fliq.linkforty.com" />
13+
<meta name="twitter:card" content="summary_large_image" />
14+
<meta name="twitter:title" content="Fliq - Secret Messages" />
15+
<meta name="twitter:description" content="Send secret messages that only the recipient can reveal." />
16+
<link rel="icon" type="image/png" href="/favicon.png" />
17+
<link rel="preconnect" href="https://fonts.googleapis.com" />
18+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
19+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet" />
20+
</head>
21+
<body>
22+
<div id="root"></div>
23+
<script type="module" src="/src/main.tsx"></script>
24+
</body>
25+
</html>

0 commit comments

Comments
 (0)