Skip to content

style: format code with Prettier #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
569 changes: 310 additions & 259 deletions .next/server/pages/index.js

Large diffs are not rendered by default.

607 changes: 340 additions & 267 deletions .next/server/vendor-chunks/next.js

Large diffs are not rendered by default.

4,118 changes: 2,441 additions & 1,677 deletions .next/static/chunks/main.js

Large diffs are not rendered by default.

350 changes: 211 additions & 139 deletions .next/static/chunks/pages/_app.js

Large diffs are not rendered by default.

24,321 changes: 15,826 additions & 8,495 deletions .next/static/chunks/pages/index.js

Large diffs are not rendered by default.

3,086 changes: 1,783 additions & 1,303 deletions .next/static/chunks/webpack.js

Large diffs are not rendered by default.

22 changes: 12 additions & 10 deletions .next/static/webpack/pages/_app.fb556585dca58eb8.hot-update.js

Large diffs are not rendered by default.

22 changes: 12 additions & 10 deletions .next/static/webpack/pages/index.925a052f9001871f.hot-update.js

Large diffs are not rendered by default.

22 changes: 12 additions & 10 deletions .next/static/webpack/pages/index.fb556585dca58eb8.hot-update.js

Large diffs are not rendered by default.

1,539 changes: 902 additions & 637 deletions .next/static/webpack/webpack.1884814989bc8453.hot-update.js

Large diffs are not rendered by default.

1,539 changes: 902 additions & 637 deletions .next/static/webpack/webpack.6467310e213804e5.hot-update.js

Large diffs are not rendered by default.

1,302 changes: 754 additions & 548 deletions .next/static/webpack/webpack.884e8d0cd2bd81d6.hot-update.js

Large diffs are not rendered by default.

23 changes: 14 additions & 9 deletions .next/static/webpack/webpack.925a052f9001871f.hot-update.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,17 @@
* or disable the default devtool with "devtool: false".
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
*/
self["webpackHotUpdate_N_E"]("webpack",{},
/******/ function(__webpack_require__) { // webpackRuntimeModules
/******/ /* webpack/runtime/getFullHash */
/******/ (() => {
/******/ __webpack_require__.h = () => ("884e8d0cd2bd81d6")
/******/ })();
/******/
/******/ }
);
self["webpackHotUpdate_N_E"](
"webpack",
{},
/******/ function (__webpack_require__) {
// webpackRuntimeModules
/******/ /* webpack/runtime/getFullHash */
/******/ (() => {
/******/ __webpack_require__.h = () => "884e8d0cd2bd81d6";
/******/
})();
/******/
/******/
},
);
23 changes: 14 additions & 9 deletions .next/static/webpack/webpack.fb556585dca58eb8.hot-update.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,17 @@
* or disable the default devtool with "devtool: false".
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
*/
self["webpackHotUpdate_N_E"]("webpack",{},
/******/ function(__webpack_require__) { // webpackRuntimeModules
/******/ /* webpack/runtime/getFullHash */
/******/ (() => {
/******/ __webpack_require__.h = () => ("925a052f9001871f")
/******/ })();
/******/
/******/ }
);
self["webpackHotUpdate_N_E"](
"webpack",
{},
/******/ function (__webpack_require__) {
// webpackRuntimeModules
/******/ /* webpack/runtime/getFullHash */
/******/ (() => {
/******/ __webpack_require__.h = () => "925a052f9001871f";
/******/
})();
/******/
/******/
},
);
59 changes: 31 additions & 28 deletions src/components/Projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ const OtherProjects = () => {
};

// Set initial width
if (typeof window !== 'undefined') {
if (typeof window !== "undefined") {
setWindowWidth(window.innerWidth);
window.addEventListener('resize', handleResize);
window.addEventListener("resize", handleResize);
}

return () => {
if (typeof window !== 'undefined') {
window.removeEventListener('resize', handleResize);
if (typeof window !== "undefined") {
window.removeEventListener("resize", handleResize);
}
};
}, []);
Expand Down Expand Up @@ -117,8 +117,8 @@ const OtherProjects = () => {
proj.status === "Live"
? "bg-green-500 bg-opacity-20 text-green-400 border border-green-500 border-opacity-30"
: proj.status === "In Development"
? "bg-yellow-500 bg-opacity-20 text-yellow-400 border border-yellow-500 border-opacity-30"
: "bg-blue-500 bg-opacity-20 text-blue-400 border border-blue-500 border-opacity-30"
? "bg-yellow-500 bg-opacity-20 text-yellow-400 border border-yellow-500 border-opacity-30"
: "bg-blue-500 bg-opacity-20 text-blue-400 border border-blue-500 border-opacity-30"
}`}
>
{proj.status}
Expand Down Expand Up @@ -161,7 +161,9 @@ const OtherProjects = () => {

{/* Click indicator */}
<div className="flex items-center text-gray-400 group-hover:text-white transition-colors ml-4">
<span className="text-sm mr-2 hidden sm:inline">Click to view</span>
<span className="text-sm mr-2 hidden sm:inline">
Click to view
</span>
<svg
className="w-5 h-5"
fill="none"
Expand Down Expand Up @@ -241,8 +243,8 @@ const OtherProjects = () => {
selectedProject.status === "Live"
? "bg-green-500 bg-opacity-20 text-green-400 border border-green-500 border-opacity-30"
: selectedProject.status === "In Development"
? "bg-yellow-500 bg-opacity-20 text-yellow-400 border border-yellow-500 border-opacity-30"
: "bg-blue-500 bg-opacity-20 text-blue-400 border border-blue-500 border-opacity-30"
? "bg-yellow-500 bg-opacity-20 text-yellow-400 border border-yellow-500 border-opacity-30"
: "bg-blue-500 bg-opacity-20 text-blue-400 border border-blue-500 border-opacity-30"
}`}
>
{selectedProject.status}
Expand All @@ -267,7 +269,7 @@ const OtherProjects = () => {
>
{tag}
</span>
)
),
)}
</div>
)}
Expand Down Expand Up @@ -298,7 +300,7 @@ const OtherProjects = () => {
className="rounded-lg max-h-[400px] object-contain"
/>
</div>
)
),
)}
</Carousel>
</div>
Expand All @@ -317,22 +319,23 @@ const OtherProjects = () => {
linkObj.name === "Github"
? "bg-[#5a4378] text-white hover:bg-[#6b5189]"
: linkObj.name === "Product"
? "bg-blue-600 text-white hover:bg-blue-700"
: linkObj.name === "MCPEDL"
? "bg-[#4a8a4a] text-white hover:bg-[#5a9a5a]"
: linkObj.name === "CurseForge"
? "bg-[#f16436] text-white hover:bg-[#ff7446]"
: linkObj.name === "VSCode Marketplace"
? "bg-[#007ACC] text-white hover:bg-[#1e8acc]"
: linkObj.name === "NPM Package"
? "bg-[#cb3837] text-white hover:bg-[#db4847]"
: linkObj.name === "Wiki Website"
? "bg-[#00599c] text-white hover:bg-[#0069ac]"
: linkObj.name === "Website"
? "bg-[#00599c] text-white hover:bg-[#0069ac]"
: linkObj.name === "Minecraft Marketplace"
? "bg-[#00A651] text-white hover:bg-[#10B661]"
: "bg-gray-600 text-white hover:bg-gray-700"
? "bg-blue-600 text-white hover:bg-blue-700"
: linkObj.name === "MCPEDL"
? "bg-[#4a8a4a] text-white hover:bg-[#5a9a5a]"
: linkObj.name === "CurseForge"
? "bg-[#f16436] text-white hover:bg-[#ff7446]"
: linkObj.name === "VSCode Marketplace"
? "bg-[#007ACC] text-white hover:bg-[#1e8acc]"
: linkObj.name === "NPM Package"
? "bg-[#cb3837] text-white hover:bg-[#db4847]"
: linkObj.name === "Wiki Website"
? "bg-[#00599c] text-white hover:bg-[#0069ac]"
: linkObj.name === "Website"
? "bg-[#00599c] text-white hover:bg-[#0069ac]"
: linkObj.name ===
"Minecraft Marketplace"
? "bg-[#00A651] text-white hover:bg-[#10B661]"
: "bg-gray-600 text-white hover:bg-gray-700"
}`}
>
{linkObj.name}
Expand Down Expand Up @@ -361,4 +364,4 @@ const OtherProjects = () => {
);
};

export default OtherProjects;
export default OtherProjects;
66 changes: 34 additions & 32 deletions src/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,13 @@ const experiences = [
},
{
title: "Official Microsoft Partner",
company_name:
"G2crafted | Official Minecraft Marketplace",
company_name: "G2crafted | Official Minecraft Marketplace",
company_url: "https://www.bedrockexplorer.com/@g2crafted",
date: "Aug 2021 - 2023",
details: [
"Established Keyyard Studio as a trusted brand, building credibility that attracts high-value partnerships.",
"Delivered premium-quality content that consistently exceeded Microsoft's strict quality standards.",
"Mastered end-to-end project management, ensuring every deadline is met while maintaining exceptional quality standards.",
"Established Keyyard Studio as a trusted brand, building credibility that attracts high-value partnerships.",
"Delivered premium-quality content that consistently exceeded Microsoft's strict quality standards.",
"Mastered end-to-end project management, ensuring every deadline is met while maintaining exceptional quality standards.",
],
},
{
Expand Down Expand Up @@ -95,17 +94,16 @@ const experiences = [
"Designing engagement-focused gameplay mechanics that consistently outperform industry benchmarks.",
],
},
{
{
title: "Organization Member & Project Lead",
company_name: "Bedrock OSS",
company_url: "https://github.com/Bedrock-OSS/",
date: "June 2025 - Present",
details: [
"Contributing to the development of open-source projects, collaborating with fellow developers to create cutting-edge solutions.",
"Served as a Wiki Contributor, creating and editing content for the knowledge-sharing platform dedicated to Minecraft Bedrock Add-Ons."
"Served as a Wiki Contributor, creating and editing content for the knowledge-sharing platform dedicated to Minecraft Bedrock Add-Ons.",
],
},

];

const mcProjects = [
Expand Down Expand Up @@ -365,7 +363,7 @@ const mcProjects = [
},
],
imgs: [
"https://xforgeassets001.xboxlive.com/pf-namespace-b63a0803d3653643/82fb9eac-c719-40be-affd-315560116328/Demonic_Legends_Thumbnail.jpg"
"https://xforgeassets001.xboxlive.com/pf-namespace-b63a0803d3653643/82fb9eac-c719-40be-affd-315560116328/Demonic_Legends_Thumbnail.jpg",
],
},
{
Expand All @@ -380,18 +378,19 @@ const mcProjects = [
},
],
imgs: [
"https://xforgeassets001.xboxlive.com/pf-title-b63a0803d3653643-20ca2/a3492053-54af-4730-aff7-91d4ba374bcb/FrightNight_Thumbnail.jpg"
"https://xforgeassets001.xboxlive.com/pf-title-b63a0803d3653643-20ca2/a3492053-54af-4730-aff7-91d4ba374bcb/FrightNight_Thumbnail.jpg",
],
}
},
];

const Projects = [
{
{
title: "Create Minecraft Bedrock CLI",
short_info: "Node Module Package",
description:
"CLI tool to create Minecraft projects workspaces with structured folders and files. It includes Microsoft's Compiler",
icon: "https://raw.githubusercontent.com/Keyyard/create-mc-bedrock-cli/refs/heads/website/public/icon.ico", links: [
icon: "https://raw.githubusercontent.com/Keyyard/create-mc-bedrock-cli/refs/heads/website/public/icon.ico",
links: [
{
name: "Github",
link: "https://github.com/Keyyard/create-mc-bedrock-cli",
Expand All @@ -403,7 +402,7 @@ const Projects = [
{
name: "Website",
link: "https://bedrockcli.keyyard.xyz",
}
},
],
imgs: [
"https://github.com/Keyyard/create-mc-bedrock-cli/blob/main/medias/gif.gif?raw=true",
Expand All @@ -414,7 +413,7 @@ const Projects = [
status: "Live",
featured: true,
},

{
title: "Blockception's Minecraft Bedrock Development",
short_info: "Contributed to VSCode Plugin",
Expand All @@ -429,16 +428,22 @@ const Projects = [
{
name: "VSCode Marketplace",
link: "https://marketplace.visualstudio.com/items/?itemName=BlockceptionLtd.blockceptionvscodeminecraftbedrockdevelopmentextension",
}
},
],
imgs: [
"https://github.com/Blockception/VSCode-Bedrock-Development-Extension/raw/HEAD/documentation/resources/overview.gif"
"https://github.com/Blockception/VSCode-Bedrock-Development-Extension/raw/HEAD/documentation/resources/overview.gif",
],
tags: [
"TypeScript",
"VSCode",
"Minecraft",
"Developer Tools",
"Productivity",
],
tags: ["TypeScript", "VSCode", "Minecraft", "Developer Tools", "Productivity"],
status: "Live",
featured: false,
},

{
title: "Bedrock Wiki",
short_info: "Contributed to Bedrock Wiki",
Expand All @@ -453,11 +458,9 @@ const Projects = [
{
name: "Wiki Website",
link: "https://wiki.bedrock.dev/",
}
],
imgs: [
"/assets/Projs/wiki.png"
},
],
imgs: ["/assets/Projs/wiki.png"],
tags: ["Documentation", "Minecraft", "Community", "Education"],
status: "Live",
featured: false,
Expand All @@ -474,12 +477,12 @@ const Projects = [
link: "https://github.com/Keyyard/today-notes",
},
{
"name": "Product",
name: "Product",
link: "https://today-notes.keyyard.xyz",
}
},
],
imgs: [
"https://github.com/Keyyard/today-notes/blob/main/public/medias/4.png?raw=true",
"https://github.com/Keyyard/today-notes/blob/main/public/medias/4.png?raw=true",
"https://github.com/Keyyard/today-notes/blob/main/public/medias/1.png?raw=true",
],
tags: ["React", "PWA", "TypeScript", "Productivity"],
Expand Down Expand Up @@ -535,16 +538,15 @@ const techStackData = [
},
{
title: "Mobile Development",
items: [
{ value: "React Native" },
{ value: "Expo" },
{ value: "Lynx.JS" },
],
items: [{ value: "React Native" }, { value: "Expo" }, { value: "Lynx.JS" }],
},
{
title: "Game Development",
items: [
{ label: "Minecraft Bedrock", value: "Add-on Development, Scripting API" },
{
label: "Minecraft Bedrock",
value: "Add-on Development, Scripting API",
},
{ label: "Performance", value: "Optimization, Algorithm Design" },
],
},
Expand Down