jsonresume-theme-urban-techno 0.2.0 → 0.2.1
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/CHANGELOG.md +7 -0
- package/README.md +36 -0
- package/dist/index.js +1 -1
- package/package.json +2 -2
- package/src/Resume.jsx +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# Urban Techno
|
|
2
|
+
|
|
3
|
+
Brutalist tech theme with high contrast, dense two-column layout, and bold typography. Black borders, uppercase section titles, and monochrome palette — power through simplicity.
|
|
4
|
+
|
|
5
|
+

|
|
6
|
+
|
|
7
|
+
**Tags:** brutalist, tech, dense, technical, monochrome, grid, urban
|
|
8
|
+
|
|
9
|
+
## Use it
|
|
10
|
+
|
|
11
|
+
Preview it live on the JSON Resume registry:
|
|
12
|
+
|
|
13
|
+
- https://registry.jsonresume.org/thomasdavis?theme=urban-techno
|
|
14
|
+
|
|
15
|
+
Install and use it with the JSON Resume CLI:
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
npm install jsonresume-theme-urban-techno
|
|
19
|
+
resume export resume.html --theme urban-techno
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Sections
|
|
23
|
+
|
|
24
|
+
Renders all standard JSON Resume sections: work, education, skills, projects, volunteer, awards, publications, languages, interests, references.
|
|
25
|
+
|
|
26
|
+
## Development
|
|
27
|
+
|
|
28
|
+
This theme lives in the [jsonresume.org](https://github.com/jsonresume/jsonresume.org) monorepo. Build it from the repo root with:
|
|
29
|
+
|
|
30
|
+
```sh
|
|
31
|
+
pnpm --filter jsonresume-theme-urban-techno build
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## License
|
|
35
|
+
|
|
36
|
+
MIT
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jsonresume-theme-urban-techno",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Brutalist tech theme with high contrast, dense two-column layout, and bold typography",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.jsx",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"styled-components": "^6.1.19",
|
|
13
|
-
"@jsonresume/core": "0.
|
|
13
|
+
"@jsonresume/core": "0.2.0"
|
|
14
14
|
},
|
|
15
15
|
"exports": {
|
|
16
16
|
".": {
|