namirasoft-node 1.0.7 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/public/index.html +45 -18
package/package.json
CHANGED
package/public/index.html
CHANGED
|
@@ -30,6 +30,27 @@
|
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
img {
|
|
33
|
+
width: 64px;
|
|
34
|
+
height: 64px;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.card {
|
|
38
|
+
display: flex;
|
|
39
|
+
flex-direction: row;
|
|
40
|
+
align-content: center;
|
|
41
|
+
align-items: center;
|
|
42
|
+
gap: 16px;
|
|
43
|
+
width: 100%;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.page-parent {
|
|
47
|
+
min-height: 100vh;
|
|
48
|
+
display: flex;
|
|
49
|
+
flex-direction: column;
|
|
50
|
+
justify-content: space-between;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.project-logo {
|
|
33
54
|
width: 128px;
|
|
34
55
|
height: 128px;
|
|
35
56
|
}
|
|
@@ -37,30 +58,36 @@
|
|
|
37
58
|
</head>
|
|
38
59
|
|
|
39
60
|
<body>
|
|
40
|
-
<div class="container">
|
|
41
|
-
<div
|
|
42
|
-
<
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
61
|
+
<div class="container page-parent">
|
|
62
|
+
<div>
|
|
63
|
+
<div class="header">
|
|
64
|
+
<img src="@logo" alt="Project Logo" class="img-fluid project-logo">
|
|
65
|
+
<h1>@title</h1>
|
|
66
|
+
<h5>@description</h5>
|
|
67
|
+
</div>
|
|
46
68
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
69
|
+
<div class="content container">
|
|
70
|
+
<div class="row gy-5">
|
|
71
|
+
<@row>
|
|
72
|
+
<div class="p-2 col-md-6">
|
|
73
|
+
<a target="_blank" href="@row_link" class="border card">
|
|
74
|
+
<img src="@row_logo" class="img-fluid">
|
|
75
|
+
<div class="content">
|
|
76
|
+
<h2>@row_title</h2>
|
|
77
|
+
<p>@row_description</p>
|
|
78
|
+
</div>
|
|
79
|
+
</a>
|
|
80
|
+
</div>
|
|
81
|
+
</@row>
|
|
55
82
|
</div>
|
|
56
|
-
|
|
83
|
+
</div>
|
|
57
84
|
</div>
|
|
58
|
-
|
|
59
85
|
<div class="company">
|
|
60
86
|
<img src="https://static.namirasoft.com/logo/namirasoft/base.png" alt="Company Logo" class="img-fluid">
|
|
61
87
|
<h3>Namira Software Corporation</h3>
|
|
62
|
-
<p>Visit our website: <a href="https://namirasoft.com">namirasoft.com</a></p>
|
|
63
|
-
<p>©Copyright 2010 to 2023 <a href="https://namirasoft.com">Namira Software Corporation</a>.
|
|
88
|
+
<p>Visit our website: <a target="_blank" href="https://namirasoft.com">namirasoft.com</a></p>
|
|
89
|
+
<p>©Copyright 2010 to 2023 <a target="_blank" href="https://namirasoft.com">Namira Software Corporation</a>.
|
|
90
|
+
All rights
|
|
64
91
|
reserved.</p>
|
|
65
92
|
</div>
|
|
66
93
|
</div>
|