-
Notifications
You must be signed in to change notification settings - Fork 27
/
index.html
105 lines (88 loc) · 4.37 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- HTML Meta Tags -->
<title>Awesome Next.js - Maintain By Rajdeep Singh</title>
<!-- Google / Search Engine Tags -->
<meta name="title" content="Awesome Next.js - Maintained By Rajdeep Singh" />
<meta name="description" content="A curated list of awesome Nextjs-based libraries that help build small and large-scale applications with next.js." />
<meta name="keywords" content="react, cms, list, awesome, reactjs, nextjs, awesome-list, awesome-lists, tailwindcss, tailwindcss-template, nextjs-library, awesome-nextjs, nextjs-tool, list-of-nextjs-package, npm-library-for-nextjs, tool-for-nextjs, nextjs-package-list, nextjs-library-for-npm, awesome-nextjs-list, nextjs-awesome">
<meta itemprop="image" content="https://cdn.jsdelivr.net/gh/officialrajdeepsingh/awesome-nextjs/_media/logo.jpg" />
<meta name="author" content="Rajdeep Singh">
<meta name="robots" content="index, follow">
<meta name="language" content="English">
<meta name="revisit-after" content="1 days">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://officialrajdeepsingh.github.io/awesome-nextjs" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Awesome Next.js - Maintained By Rajdeep Singh" />
<meta property="og:description" content="A curated list of awesome Nextjs-based libraries that help build small and large-scale applications with next.js." />
<meta property="og:image" content="https://cdn.jsdelivr.net/gh/officialrajdeepsingh/awesome-nextjs/_media/logo.jpg" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Awesome Next.js - Maintained By Rajdeep Singh" />
<meta name="twitter:description" content="A curated list of awesome Nextjs-based libraries that help build small and large-scale applications with next.js." />
<meta name="twitter:image" content="https://cdn.jsdelivr.net/gh/officialrajdeepsingh/awesome-nextjs/_media/logo.jpg" />
<link rel="icon" href="https://cdn.jsdelivr.net/gh/officialrajdeepsingh/awesome-nextjs/_media/favicon.ico" />
<!-- Themes (light + dark) -->
<link rel="stylesheet alternative" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css" title="dark">
<style>
a[href="https://awesome.re"]{
display: none;
}
img[src="https://awesome.re/badge.svg"]{
display: none;
}
:root{
--base-background-color: #1e1a1a
}
.sidebar {
display: none
}
.sidebar-toggle{
display: none;
}
.display-none{
display: none;
}
</style>
</head>
<body>
<div id="app"> Looding ... </div>
<script>
window.$docsify = {
routerMode: "history",
name: "Awesome Next.js",
auto2top: true,
hideSidebar: true,
loadNavbar: true,
relativePath: true,
plugins: [
function pageFooter(hook, vm) {
var footer = [
'<footer style="margin-top: 90px;background-color: darkslateblue;padding: 10px;color: white;">',
'<span style="padding: 0px 5px;"> Awesome Nextjs is maintained By <a target="_blank" href="https://twitter.com/Official_R_deep">Rajdeep Singh</a> and built with <a target="_blank" href="https://docsify.js.org"> Docsify</a>.</span>',
'</footer>',
].join('');
hook.afterEach(function (html) {
return html + footer;
});
}
],
};
</script>
<!-- Docsify v4 -->
<!-- Required -->
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/docsify.min.js"></script>
<!-- Recommended -->
<!-- <script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/search.js"></script> -->
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/zoom-image.min.js"></script>
<!-- plugins -->
<script src="https://cdn.jsdelivr.net/npm/docsify-copy-code/dist/docsify-copy-code.min.js"></script>
<!-- <script src="//cdn.jsdelivr.net/npm/docsify-darklight-theme@3/dist/docsify-themeable/main.min.js" type="text/javascript"></script> -->
<!-- <script src="//cdn.jsdelivr.net/npm/docsify-darklight-theme@3/dist/docsify-themeable/index.min.js" type="text/javascript"> </script> -->
</body>
</html>