-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (69 loc) · 3.05 KB
/
Copy pathindex.html
File metadata and controls
75 lines (69 loc) · 3.05 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Pathwise — Flow-based Form Builder</title>
<meta
name="description"
content="Pathwise is a visual flow-based form builder. Design multi-step forms by connecting typed field nodes — text, dropdown, radio, and more — on an interactive canvas."
/>
<!-- Primary Meta -->
<meta name="title" content="Pathwise — Flow-based Form Builder" />
<meta
name="description"
content="Pathwise is a visual flow-based form builder. Design multi-step forms by connecting typed field nodes — text, dropdown, radio, and more — on an interactive canvas."
/>
<meta
name="keywords"
content="form builder, flow-based, multi-step form, visual editor, vue flow, node editor, conditional branching, no-code"
/>
<meta name="author" content="Murphy Facey" />
<meta name="robots" content="index, follow" />
<!-- Open Graph -->
<meta property="og:title" content="Pathwise — Flow-based Form Builder" />
<meta
property="og:description"
content="Pathwise is a visual flow-based form builder. Design multi-step forms by connecting typed field nodes — text, dropdown, radio, and more — on an interactive canvas."
/>
<meta property="og:url" content="https://pathwise-two.vercel.app/" />
<meta property="og:type" content="website" />
<meta
property="og:image"
content="https://pathwise-two.vercel.app/og-image.png"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:site_name" content="Pathwise" />
<meta property="og:locale" content="en_US" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Pathwise — Flow-based Form Builder" />
<meta
name="twitter:description"
content="Pathwise is a visual flow-based form builder. Design multi-step forms by connecting typed field nodes — text, dropdown, radio, and more — on an interactive canvas."
/>
<meta
name="twitter:image"
content="https://pathwise-two.vercel.app/og-image.png"
/>
<!-- Canonical -->
<link rel="canonical" href="https://pathwise-two.vercel.app/" />
<!-- Favicon -->
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="Pathwise" />
<link rel="manifest" href="/site.webmanifest" />
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link
href="https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Syne:wght@400;600;700;800&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>