-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (102 loc) · 3.54 KB
/
Copy pathindex.html
File metadata and controls
108 lines (102 loc) · 3.54 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>Prompt2Wrapped - Your AI Conversations, Wrapped</title>
<meta
name="title"
content="Prompt2Wrapped - Your AI Conversations, Wrapped"
/>
<meta
name="description"
content="Get your personalized 'Spotify Wrapped' style summary of your AI conversations. See your prompting personality, top topics, communication style, and fun facts about how you interact with AI."
/>
<meta
name="keywords"
content="prompt wrapped, AI wrapped, chatgpt wrapped, gpt wrapped, gtp wrapped, prompt analysis, AI conversation summary, year in review, spotify wrapped style, prompt2wrapped"
/>
<meta name="author" content="Samuel Peters" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://prompt2wrap.vercel.app/" />
<!-- Theme Colors -->
<meta name="theme-color" content="#050505" />
<meta name="msapplication-navbutton-color" content="#050505" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<meta name="msapplication-starturl" content="/" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://prompt2wrap.vercel.app/" />
<meta
property="og:title"
content="Prompt2Wrapped - Your AI Conversations, Wrapped"
/>
<meta
property="og:description"
content="Get your personalized 'Spotify Wrapped' style summary of your AI conversations. Discover your prompting personality and communication style!"
/>
<meta
property="og:image"
content="https://prompt2wrap.vercel.app/og-image.png"
/>
<meta property="og:site_name" content="Prompt2Wrapped" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://prompt2wrap.vercel.app/" />
<meta
property="twitter:title"
content="Prompt2Wrapped - Your AI Conversations, Wrapped"
/>
<meta
property="twitter:description"
content="Get your personalized 'Spotify Wrapped' style summary of your AI conversations. Discover your prompting personality!"
/>
<meta
property="twitter:image"
content="https://prompt2wrap.vercel.app/og-image.png"
/>
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Prompt2Wrapped",
"description": "Get your personalized Spotify Wrapped style summary of your AI conversations",
"url": "https://prompt2wrap.vercel.app/",
"applicationCategory": "Entertainment",
"operatingSystem": "Any",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"author": {
"@type": "Person",
"name": "Samuel Peters"
}
}
</script>
</head>
<body>
<div
id="canvas-container"
style="
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background-color: #050505;
"
></div>
<div id="app" style="position: relative; z-index: 1"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>