create-elit 3.2.9 → 3.3.0

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.
@@ -0,0 +1 @@
1
+ export const users = [];
@@ -1,19 +1,22 @@
1
1
  import { footer, div, p, a } from 'elit/el';
2
2
 
3
3
  export function Footer() {
4
+ const today = new Date();
5
+ const year = today.getFullYear();
6
+
4
7
  return footer({ className: 'footer' },
5
8
  div({ className: 'footer-content' },
6
9
  div({ className: 'footer-section' },
7
- p({ className: 'footer-title' }, 'My Elit App'),
10
+ p({ className: 'footer-title' }, 'ELIT_PROJECT_NAME'),
8
11
  p({ className: 'footer-text' }, 'Built with Elit Framework')
9
12
  ),
10
13
  div({ className: 'footer-section' },
11
- a({ href: 'https://github.com', target: '_blank', className: 'footer-link' }, 'GitHub'),
12
- a({ href: '#', className: 'footer-link' }, 'Documentation'),
14
+ a({ href: 'https://github.com/n-devs', target: '_blank', className: 'footer-link' }, 'GitHub'),
15
+ a({ href: 'https://d-osc.github.io/elit/#/docs', className: 'footer-link' }, 'Documentation'),
13
16
  a({ href: '#', className: 'footer-link' }, 'Support')
14
17
  ),
15
18
  div({ className: 'footer-section' },
16
- p({ className: 'footer-copyright' }, 2026 My Elit App. All rights reserved.')
19
+ p({ className: 'footer-copyright' }, ${year} ELIT_PROJECT_NAME. All rights reserved.`)
17
20
  )
18
21
  )
19
22
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-elit",
3
- "version": "3.2.9",
3
+ "version": "3.3.0",
4
4
  "description": "Scaffolding tool for creating Elit projects",
5
5
  "type": "module",
6
6
  "bin": {