-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (48 loc) · 1.89 KB
/
index.html
File metadata and controls
59 lines (48 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- SEO Metadata -->
<title>Pressiqo - AI WordPress Automation SaaS</title>
<!-- Standard favicon -->
<link rel="icon" href="/favicon.ico" sizes="any">
<!-- SVG favicon (modern browsers) -->
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<meta name="description"
content="Secure, cloud-based platform for automated content generation. Support for Gemini, OpenAI, and bulk WordPress publishing directly from your browser." />
<meta name="keywords" content="AI writer, WordPress automation, SaaS, SEO tools, content marketing" />
<meta property="og:title" content="Pressiqo - AI WordPress Automation SaaS" />
<meta property="og:description"
content="Automate your WordPress content workflow with AI. Secure, fast, and available directly in your browser." />
<meta property="og:type" content="website" />
<meta property="og:image" content="/assets/logo-512px.png" />
<!-- Fonts -->
<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@400;500;600;700&display=swap" rel="stylesheet">
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
colors: {
slate: {
950: '#020617', // Custom dark background
}
}
},
},
}
</script>
<link rel="stylesheet" href="/index.css">
</head>
<body class="bg-slate-950 text-slate-200 antialiased selection:bg-blue-500/30">
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>