-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (69 loc) · 3.07 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
<!-- Fugaz One - Logo Font & Roboto - Text Font -->
<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=Fugaz+One&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet"
/>
<!-- Viewport meta tag for responsive design -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Title of the page (appears in the browser tab) -->
<title>Auctions : Open Source Online Marketplace</title>
<!-- Meta description for better search engine ranking -->
<meta
name="description"
content="Auctions is a free, open-source online marketplace platform to list items for auction, with real-time bidding, notifications, and more. Create, manage, and participate in online auctions easily."
/>
<!-- Meta keywords for SEO purposes -->
<meta
name="keywords"
content="online auctions, free auction platform, open source marketplace, real-time bidding, auction website, list auction items, auction app, Discord integration, Appwrite BaaS"
/>
<!-- Meta for social media sharing -->
<meta
property="og:title"
content="Auctions : Open Source Online Marketplace"
/>
<meta
property="og:description"
content="Auctions is a free, open-source online marketplace platform that helps users list items for auction, manage real-time bidding, and get notifications. Build your own auction site with ease."
/>
<!-- TODO -->
<meta property="og:image" content="/path/to/your/image.jpg" />
<!-- TODO -->
<!-- Optional image to display on social sharing -->
<meta property="og:url" content="https://yourdomain.com" />
<meta property="og:type" content="website" />
<!-- TODO -->
<!-- Twitter card meta for Twitter sharing -->
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="Auctions : Open Source Online Marketplace"
/>
<meta
name="twitter:description"
content="Auctions is a free, open-source online marketplace platform to list items for auction, with real-time bidding, notifications, and more."
/>
<!-- TODO -->
<meta name="twitter:image" content="/path/to/your/image.jpg" />
<meta name="twitter:creator" content="@yourTwitterHandle" />
<!-- TODO -->
<!-- Favicon -->
<link rel="icon" href="/favicon.ico" />
<!-- Open Graph for rich preview in social media platforms like Facebook -->
<meta property="og:site_name" content="Auctions Marketplace" />
<!-- TODO -->
<!-- Canonical tag to prevent duplicate content issues -->
<link rel="canonical" href="https://yourdomain.com" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>