-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (39 loc) · 2.34 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PHP Serialization Visualizer | Open Source Tool</title>
<!-- Primary Meta Tags -->
<meta name="title" content="PHP Serialization Visualizer | Open Source Tool">
<meta name="description" content="Free, open-source tool to visualize, modify, and export PHP serialized data with an intuitive drag-and-drop interface. All processing happens in your browser.">
<meta name="keywords" content="PHP, serialization, serialized data, visualizer, open source, tool, developer, web development">
<meta name="author" content="PHP Serializer Team">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://phpserializer.dev/">
<meta property="og:title" content="PHP Serialization Visualizer | Open Source Tool">
<meta property="og:description" content="Free, open-source tool to visualize, modify, and export PHP serialized data with an intuitive drag-and-drop interface.">
<meta property="og:image" content="/og-image.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://phpserializer.dev/">
<meta property="twitter:title" content="PHP Serialization Visualizer | Open Source Tool">
<meta property="twitter:description" content="Free, open-source tool to visualize, modify, and export PHP serialized data with an intuitive drag-and-drop interface.">
<meta property="twitter:image" content="/og-image.png">
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<!-- Theme Color -->
<meta name="theme-color" content="#8b5cf6">
</head>
<body>
<div id="root"></div>
<!-- IMPORTANT: DO NOT REMOVE THIS SCRIPT TAG OR THIS VERY COMMENT! -->
<script src="https://cdn.gpteng.co/gptengineer.js" type="module"></script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>