-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (37 loc) · 2.65 KB
/
index.html
File metadata and controls
40 lines (37 loc) · 2.65 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
<!DOCTYPE html>
<!-- Root HTML template: Vite injects the built app; React mounts into #root -->
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags / SEO -->
<title>Paragraph Generator – Lorem Ipsum | React Fundamental Project by Arnob Mahmud</title>
<meta name="title" content="Paragraph Generator – Lorem Ipsum | React Fundamental Project by Arnob Mahmud" />
<meta name="description" content="Generate a customizable number of random paragraphs (Lorem Ipsum style) for design, development, and content prototyping. Built with React, Vite, and JavaScript. Live demo available." />
<meta name="author" content="Arnob Mahmud (https://www.arnobmahmud.com, contact@arnobmahmud.com)" />
<meta name="keywords" content="paragraph generator, lorem ipsum, React, Vite, JavaScript, random text, placeholder text, design prototyping, content placeholder, useState, nanoid, frontend, web app, Arnob Mahmud" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://create-paragraph.vercel.app/" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://create-paragraph.vercel.app/" />
<meta property="og:title" content="Paragraph Generator – Lorem Ipsum | React Fundamental Project by Arnob Mahmud" />
<meta property="og:description" content="Generate a customizable number of random paragraphs for design and content prototyping. Built with React, Vite, and JavaScript." />
<meta property="og:image" content="https://create-paragraph.vercel.app/vite.svg" />
<meta property="og:site_name" content="Paragraph Generator – Lorem Ipsum" />
<meta property="og:locale" content="en_US" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://create-paragraph.vercel.app/" />
<meta name="twitter:title" content="Paragraph Generator – Lorem Ipsum | React Fundamental Project by Arnob Mahmud" />
<meta name="twitter:description" content="Generate a customizable number of random paragraphs for design and content prototyping. Built with React, Vite, and JavaScript." />
<meta name="twitter:image" content="https://create-paragraph.vercel.app/vite.svg" />
</head>
<body>
<!-- React root: main.jsx mounts the app into this div -->
<div id="root"></div>
<!-- type="module" enables ES modules; Vite resolves /src/main.jsx -->
<script type="module" src="/src/main.jsx"></script>
</body>
</html>