|
@@ -188,6 +188,7 @@ let apps: app[] = [
|
|
|
row: 2,
|
|
row: 2,
|
|
|
onclick: () => {
|
|
onclick: () => {
|
|
|
raiseUpSpec("pgp");
|
|
raiseUpSpec("pgp");
|
|
|
|
|
+ document.getElementById("pgp").classList.add("fullscreen");
|
|
|
document.getElementById("pgp").style.display = "block";
|
|
document.getElementById("pgp").style.display = "block";
|
|
|
},
|
|
},
|
|
|
},
|
|
},
|
|
@@ -228,29 +229,36 @@ apps = apps.map((item) => {
|
|
|
---
|
|
---
|
|
|
|
|
|
|
|
<Layout title="Simo">
|
|
<Layout title="Simo">
|
|
|
- <div style="display: flex;">
|
|
|
|
|
- <div style="height: 20rem; display: flex; flex-direction: column; align-items: flex-start;">
|
|
|
|
|
- {row1Items.map((item) => <App {item} />)}
|
|
|
|
|
|
|
+ <div style="width: 100%; height: calc(100vh - 3.5rem); ">
|
|
|
|
|
+ <Pgp />
|
|
|
|
|
+
|
|
|
|
|
+ <div style="display: flex;">
|
|
|
|
|
+ <div
|
|
|
|
|
+ style="height: 20rem; display: flex; flex-direction: column; align-items: flex-start;"
|
|
|
|
|
+ >
|
|
|
|
|
+ {row1Items.map((item) => <App {item} />)}
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ <div
|
|
|
|
|
+ style="height: 20rem; display: flex; flex-direction: column; align-items: flex-start;"
|
|
|
|
|
+ >
|
|
|
|
|
+ {row2Items.map((item) => <App {item} />)}
|
|
|
|
|
+ </div>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
- <div style="height: 20rem; display: flex; flex-direction: column; align-items: flex-start;">
|
|
|
|
|
- {row2Items.map((item) => <App {item} />)}
|
|
|
|
|
- </div>
|
|
|
|
|
- </div>
|
|
|
|
|
-</Layout>
|
|
|
|
|
|
|
|
|
|
-<Aboutme />
|
|
|
|
|
-<Redirect />
|
|
|
|
|
-<Contact />
|
|
|
|
|
-<Taskbar />
|
|
|
|
|
-<Pgp />
|
|
|
|
|
|
|
|
|
|
-<Projects projects={projectsArr} />
|
|
|
|
|
-
|
|
|
|
|
-<!-- Projects -->
|
|
|
|
|
-<Summize />
|
|
|
|
|
-<Notion />
|
|
|
|
|
|
|
+ <Aboutme />
|
|
|
|
|
+ <Redirect />
|
|
|
|
|
+ <Contact />
|
|
|
|
|
+ <Projects projects={projectsArr} />
|
|
|
|
|
+ <Summize />
|
|
|
|
|
+ <Notion />
|
|
|
|
|
|
|
|
|
|
+
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <Taskbar />
|
|
|
|
|
+</Layout>
|
|
|
<script define:vars={{ apps, projectsArr, clientFunctions }}>
|
|
<script define:vars={{ apps, projectsArr, clientFunctions }}>
|
|
|
for (func in clientFunctions) {
|
|
for (func in clientFunctions) {
|
|
|
eval(clientFunctions[func]);
|
|
eval(clientFunctions[func]);
|
|
@@ -321,7 +329,7 @@ apps = apps.map((item) => {
|
|
|
apps.forEach((app) => {
|
|
apps.forEach((app) => {
|
|
|
let itemName = app.name.replace(" ", "");
|
|
let itemName = app.name.replace(" ", "");
|
|
|
|
|
|
|
|
- // console.info(document.getElementById(app.name));
|
|
|
|
|
|
|
+ console.log(itemName)
|
|
|
|
|
|
|
|
if (app.onclick == "undefined") {
|
|
if (app.onclick == "undefined") {
|
|
|
return;
|
|
return;
|