-
-
Notifications
You must be signed in to change notification settings - Fork 184
/
index.html
57 lines (54 loc) · 2.45 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.webp" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="DummyGram is a social media application where we have posts, stories, authentication, comment, delete, share and like feature. It uses ReactJs in the frontend for the UI and Firebase for the backend storing the users, posts, stories and comments."
/>
<meta
name="keywords"
content="social, social media, instagram, dummygram, project, react, react project, beginner, firebase, posts, comments"
/>
<!-- Primary Meta Tags -->
<meta name="title" content="DummyGram" />
<meta name="language" content="en" />
<meta name="author" content="Narayan soni" />
<meta name="robots" content="index, follow" />
<meta name="revisit-after" content="7 days" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://narayan954.github.io/dummygram/" />
<meta property="og:title" content="DummyGram" />
<meta
property="og:description"
content="DummyGram is a social media application where we have posts, stories, authentication, comment, delete, share and like feature. It uses ReactJs in the frontend for the UI and Firebase for the backend storing the users, posts, stories and comments."
/>
<meta
property="og:image"
content="https://github.com/narayan954/dummygram/assets/56786344/2c2f9492-824a-4e2d-9703-2f6026d6574a"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta
property="twitter:url"
content="https://narayan954.github.io/dummygram/"
/>
<meta property="twitter:title" content="DummyGram" />
<meta
property="twitter:description"
content="DummyGram is a social media application where we have posts, stories, authentication, comment, delete, share and like feature. It uses ReactJs in the frontend for the UI and Firebase for the backend storing the users, posts, stories and comments."
/>
<meta
property="twitter:image"
content="https://github.com/narayan954/dummygram/assets/56786344/2c2f9492-824a-4e2d-9703-2f6026d6574a"
/>
<title>DummyGram</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>