-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathog-image-template.html
More file actions
88 lines (81 loc) · 2.37 KB
/
og-image-template.html
File metadata and controls
88 lines (81 loc) · 2.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MindMirror OG Image</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 1200px;
height: 630px;
background: #FFFFFF;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
overflow: hidden;
}
.container {
text-align: center;
padding: 60px;
display: flex;
flex-direction: column;
align-items: center;
gap: 32px;
}
.logo-title {
display: flex;
align-items: center;
gap: 20px;
}
.logo {
width: 120px;
height: 120px;
border-radius: 16px;
}
h1 {
font-size: 140px;
font-weight: 700;
color: #000000;
letter-spacing: -0.04em;
line-height: 1;
}
p {
font-size: 48px;
font-weight: 500;
color: rgba(0, 0, 0, 0.65);
letter-spacing: -0.01em;
line-height: 1.3;
}
/* Subtle gradient overlay */
.gradient {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
pointer-events: none;
}
</style>
</head>
<body>
<div class="gradient"></div>
<div class="container">
<div class="logo-title">
<img src="frontend/public/lovable-uploads/df98b257-f966-4a4c-95ec-38a40d83c40a.png" alt="MindMirror Logo" class="logo">
<h1>MindMirror</h1>
</div>
<p>Long-term memory for AI models</p>
</div>
</body>
</html>