-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (109 loc) · 5.67 KB
/
index.html
File metadata and controls
119 lines (109 loc) · 5.67 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
109
110
111
112
113
114
115
116
117
118
119
<!doctype html>
<html lang="en">
<head>
<!-- Ensure visually-hidden utility is available before first paint -->
<style>
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
</style>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/bento-logo.png" />
<link rel="apple-touch-icon" href="/bento-logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=yes" />
<!-- Primary Meta Tags -->
<title>Bento Grid Generator – Create, Customize & Export Bento Layouts</title>
<meta name="title" content="Bento Grid Generator – Create, Customize & Export Bento Layouts" />
<meta name="description" content="Create beautiful bento-style grid layouts in your browser. Drag and drop cards, customize styles, and export high‑resolution images or JSON. Free, fast, and privacy‑friendly." />
<meta name="keywords" content="bento grid, grid layout generator, bento design, portfolio layout, drag and drop, grid builder, web design tool, layout creator, free design tool" />
<meta name="author" content="Bento Grid Generator Contributors" />
<meta name="robots" content="index, follow" />
<meta name="revisit-after" content="7 days" />
<!-- Theme and Mobile -->
<meta name="theme-color" content="#ffffff" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="Bento Generator" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://bento-generator.com/" />
<meta property="og:title" content="Bento Grid Generator – Create, Customize & Export Bento Layouts" />
<meta property="og:description" content="Create beautiful bento-style grid layouts in your browser. Drag and drop cards, customize styles, and export high‑resolution images or JSON. Free, fast, and privacy‑friendly." />
<meta property="og:image" content="https://bento-generator.com/og-image.png" />
<meta property="og:locale" content="en_US" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:site_name" content="Bento Grid Generator" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://bento-generator.com/" />
<meta name="twitter:title" content="Bento Grid Generator – Create, Customize & Export Bento Layouts" />
<meta name="twitter:description" content="Create beautiful bento-style grid layouts in your browser. Drag and drop cards, customize styles, and export high‑resolution images or JSON. Free, fast, and privacy‑friendly." />
<meta name="twitter:image" content="https://bento-generator.com/og-image.png" />
<!-- Canonical URL -->
<link rel="canonical" href="https://bento-generator.com/" />
<link rel="alternate" href="https://bento-generator.com/" hreflang="en" />
<link rel="alternate" href="https://bento-generator.com/" hreflang="x-default" />
<!-- Web App Manifest -->
<link rel="manifest" href="/manifest.json" />
<!-- Preconnect for Performance -->
<link rel="preconnect" href="https://images.unsplash.com" />
<!-- JSON-LD Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Bento Grid Generator",
"description": "A powerful, free web-based tool for creating stunning Bento-style grid layouts with drag-and-drop interface",
"url": "https://bento-generator.com/",
"applicationCategory": "DesignApplication",
"operatingSystem": "Any",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"author": {
"@type": "Organization",
"name": "Bento Grid Generator Contributors"
},
"browserRequirements": "Requires JavaScript. Requires HTML5.",
"softwareVersion": "0.0.1",
"screenshot": "https://bento-generator.com/og-image.png",
"featureList": [
"Drag & Drop Interface",
"Multiple Card Sizes",
"Background Customization",
"Text Styling",
"Export as PNG",
"Export/Import JSON",
"Pre-built Templates",
"Responsive Design"
],
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "5",
"ratingCount": "1"
}
}
</script>
</head>
<body>
<!-- Visually hidden page header for SEO without affecting UI -->
<h1 class="sr-only">Bento Grid Generator – Design and Export Bento Layouts</h1>
<h2 class="sr-only">
Create beautiful Bento-style grid layouts with an intuitive drag-and-drop interface, Apple like Bento grid builder.
</h2>
<!-- Hidden internal navigation and anchor targets to improve internal linking -->
<nav class="sr-only" aria-hidden="true">
<a href="#root">Go to App</a>
<a href="#features">Features</a>
<a href="#templates">Templates</a>
<a href="#export">Export</a>
</nav>
<div id="features" class="sr-only" aria-hidden="true" tabindex="-1"></div>
<div id="templates" class="sr-only" aria-hidden="true" tabindex="-1"></div>
<div id="export" class="sr-only" aria-hidden="true" tabindex="-1"></div>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>