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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/public/index.html +45 -18
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "namirasoft-node",
3
3
  "description": "Namira Software Corporation Node NPM Package",
4
- "version": "1.0.7",
4
+ "version": "1.0.8",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
7
7
  "scripts": {},
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 class="header">
42
- <img src="@logo" alt="Project Logo" class="img-fluid">
43
- <h1>@title</h1>
44
- <h5>@description</h5>
45
- </div>
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
- <div class="content">
48
- <@row>
49
- <div class="row">
50
- <a href="@row_link" class="col-md-12 border">
51
- <img src="@row_logo" class="img-fluid">
52
- <h2>@row_title</h2>
53
- <p>@row_description</p>
54
- </a>
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
- </@row>
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>. All rights
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>