-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (79 loc) · 4.71 KB
/
Copy pathindex.html
File metadata and controls
87 lines (79 loc) · 4.71 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
<!doctype html>
<html lang="en-GB">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AI Teacher Pro - Generative AI for Teachers</title>
<meta name="description" content="Official companion site for Generative AI for Teachers by Roney Nascimento – explore AI tools, courses, videos and resources mentioned in the book." />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:title" content="AI Teacher Pro - Generative AI for Teachers" />
<meta property="og:description" content="Official companion site for Generative AI for Teachers by Roney Nascimento – explore AI tools, courses, videos and resources mentioned in the book." />
<meta property="og:image" content="https://nyc.cloud.appwrite.io/v1/storage/buckets/68518e5500284ee65814/files/68518ebd0024ac797a36/view?project=680e68b10024125b5c0b&mode=admin" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="Generative AI for Teachers book cover – open book with robotic arm and light bulb" />
<meta property="og:site_name" content="AI Teacher Pro" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:title" content="AI Teacher Pro - Generative AI for Teachers" />
<meta property="twitter:description" content="Official companion site for Generative AI for Teachers by Roney Nascimento – explore AI tools, courses, videos and resources mentioned in the book." />
<meta property="twitter:image" content="https://nyc.cloud.appwrite.io/v1/storage/buckets/68518e5500284ee65814/files/68518ebd0024ac797a36/view?project=680e68b10024125b5c0b&mode=admin" />
<meta property="twitter:image:alt" content="Generative AI for Teachers book cover – open book with robotic arm and light bulb" />
<meta property="twitter:site" content="@aiteacherpro" />
<meta property="twitter:creator" content="@aiteacherpro" />
<!-- Additional SEO Meta Tags -->
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" />
<meta name="theme-color" content="#0F4D3F" />
<meta name="author" content="AI Teacher Pro" />
<meta name="keywords" content="AI education, teaching with AI, generative AI, educational technology, teachers, artificial intelligence, classroom technology, pedagogical innovation" />
<!-- Preconnect to external domains -->
<link rel="preconnect" href="https://gjvtncdjcslnkfctqnfy.supabase.co" />
<link rel="preconnect" href="https://nyc.cloud.appwrite.io" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet" />
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "AI Teacher Pro",
"description": "Official companion site for Generative AI for Teachers – explore AI tools, courses, videos and resources mentioned in the book.",
"url": "https://ai-teachers.pro",
"author": {
"@type": "Organization",
"name": "AI Teacher Pro"
},
"mainEntity": {
"@type": "Book",
"name": "Generative AI for Teachers – A Practical Guide to Educational Technology",
"author": {
"@type": "Person",
"name": "Roney Nascimento"
},
"description": "A comprehensive guide to integrating artificial intelligence tools into educational practice."
}
}
</script>
<!-- Theme Detection Script -->
<script>
// Check for saved theme preference or default to system preference
const savedTheme = localStorage.getItem('theme');
const systemPrefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
if (savedTheme === 'dark' || (!savedTheme && systemPrefersDark)) {
document.documentElement.classList.add('dark');
document.documentElement.setAttribute('data-theme', 'dark');
} else {
document.documentElement.classList.remove('dark');
document.documentElement.setAttribute('data-theme', 'light');
}
</script>
</head>
<body class="bg-gray-50 dark:bg-gray-900 text-gray-900 dark:text-white transition-colors duration-300">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>