Skip to content

Commit f6c209b

Browse files
committed
wip: productivity prototrash
1 parent 1aa7e3c commit f6c209b

File tree

3 files changed

+48
-0
lines changed

3 files changed

+48
-0
lines changed
31.5 MB
Binary file not shown.
11.1 MB
Binary file not shown.
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
import {createProjectContent} from "../../template.ts";
2+
3+
import SHOWCASE_WEBM from "./assets/productivity-showcase.webm";
4+
import SHOWCASE_MP4 from "./assets/productivity-showcase.mp4";
5+
6+
import SCREENSHOT_1 from "./assets/productivity-screenshot-1.jpg"
7+
import SCREENSHOT_2 from "./assets/productivity-screenshot-2.jpg"
8+
import SCREENSHOT_3 from "./assets/productivity-screenshot-3.jpg"
9+
import SCREENSHOT_4 from "./assets/productivity-screenshot-4.jpg"
10+
11+
import THUMBNAIL from "./assets/productivity-thumbnail.png";
12+
13+
//-----------------------------------------------------------------------
14+
15+
export const {content, techs, buttons, thumbnail} = createProjectContent(
16+
"Productivity", // Title
17+
"Game Prototype", // Subtitle
18+
"Find the perfect spot", // Tagline
19+
20+
// Paragraphs
21+
[
22+
"Command a standing desk by going up and down. The user at the desk will change stance depending on the desk's configuration."
23+
],
24+
25+
// Medias
26+
[SHOWCASE_WEBM, SHOWCASE_MP4],
27+
[SCREENSHOT_1, SCREENSHOT_2, SCREENSHOT_3, SCREENSHOT_4],
28+
29+
// Techs Used
30+
[
31+
{technology: "Unity 3D", percentage: 75},
32+
{technology: "Blender", percentage: 60},
33+
{technology: "Figma", percentage: 20}
34+
],
35+
36+
//Buttons
37+
[
38+
["Assets Gym", "LINK", true],
39+
["GitHub Repo", "LINK", false]
40+
],
41+
42+
// Thumbnail
43+
THUMBNAIL,
44+
"You are the standing desk.",
45+
"Game prototype",
46+
"COLOR",
47+
"productivity"
48+
);

0 commit comments

Comments
 (0)