forked from narayan954/dummygram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (56 loc) · 2.47 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
<!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 functioning clone of Instagram where we have posts feature, authentication, comment, delete and like feature. It uses ReactJs in the frontend for the UI and Firebase for the backend storing the users, posts and comments."
/>
<meta
name="keywords"
content="social, social media, instagram, dummygram, clone, 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 functioning clone of Instagram where we have posts feature, authentication, comment, delete and like feature. It uses ReactJs in the frontend for the UI and Firebase for the backend storing the users, posts 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 functioning clone of Instagram where we have posts feature, authentication, comment, delete and like feature. It uses ReactJs in the frontend for the UI and Firebase for the backend storing the users, posts and comments."
/>
<meta
property="twitter:image"
content="https://github.com/narayan954/dummygram/assets/56786344/2c2f9492-824a-4e2d-9703-2f6026d6574a"
/>
<title>DummyGram</title>
</head>
<style id="scrollbar_style"></style>
<body>
<div id="root">
<script type="module" src="/src/main.jsx"></script>
</div>
</body>
</html>