-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (49 loc) · 2.33 KB
/
index.html
File metadata and controls
55 lines (49 loc) · 2.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Favicon -->
<link rel="icon" type="image/png" href="/fav.png" />
<!-- Primary Meta Tags -->
<title>SmartLens - AI Face Detection App</title>
<meta name="title" content="SmartLens - AI Face Detection App" />
<meta name="description" content="AI-powered face detection web application with Google OAuth, real-time recognition, and user profiles. Built with React, Node.js, and Clarifai API." />
<meta name="keywords" content="face detection, AI, machine learning, facial recognition, React app, Clarifai, computer vision, image processing" />
<meta name="author" content="Nour Alaa" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://smartlens.onrender.com/" />
<meta property="og:title" content="SmartLens - AI Face Detection App" />
<meta property="og:description" content="Upload images and detect faces instantly with AI-powered recognition technology." />
<meta property="og:image" content="https://smartlens.onrender.com/preview.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://smartlens.onrender.com/" />
<meta property="twitter:title" content="SmartLens - AI Face Detection App" />
<meta property="twitter:description" content="Upload images and detect faces instantly with AI-powered recognition technology." />
<meta property="twitter:image" content="https://smartlens.onrender.com/preview.png" />
<!-- Theme Color -->
<meta name="theme-color" content="#0b3d91" />
<!-- Structured Data for Google -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "SmartLens",
"description": "AI-powered face detection application",
"url": "https://smartlens.onrender.com",
"applicationCategory": "UtilityApplication",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>