-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (42 loc) · 2.11 KB
/
Copy pathindex.html
File metadata and controls
46 lines (42 loc) · 2.11 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
<!-- entry point of the application. React renders the App inside of this file -->
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BookQuest</title>
<meta
name="description"
content="BookQuest lets you search and explore books using the Google Books API. Discover titles, authors, and publication details in a clean, responsive UI."
/>
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="BookQuest – Google Books Search" />
<meta
property="og:description"
content="Search and discover books by title, author, and publisher with BookQuest, powered by the Google Books API."
/>
<!-- Replace with your deployed URL -->
<meta property="og:url" content="https://book-viewer-app.onrender.com/search-books" />
<!-- Replace with an absolute URL to a share image (1200x630 recommended) -->
<meta property="og:image" content="https://raw.githubusercontent.com/BluffSet7340/book-viewer-app/refs/heads/main/src/assets/opengraph-image.png" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="BookQuest – Google Books Search" />
<meta
name="twitter:description"
content="Quickly find books and view details using the Google Books API with BookQuest."
/>
<meta name="twitter:image" content="https://your-bookquest-url.onrender.com/og-image.png" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Playwrite+NZ+Basic:wght@100..400&display=swap" rel="stylesheet">
</head>
<body>
<!-- empty div where React mounts the main.jsx on top of this -->
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
<!-- script is used to start the react app when the page loads -->
</body>
</html>