This commit is contained in:
parent
0619ff0693
commit
11a432a2c1
16
src/store.js
16
src/store.js
@ -4,7 +4,8 @@ const experianceList = [
|
|||||||
{
|
{
|
||||||
id: "46bf76ae-8915-4e5d-ae92-4151be80e75a",
|
id: "46bf76ae-8915-4e5d-ae92-4151be80e75a",
|
||||||
title: "Netzero web",
|
title: "Netzero web",
|
||||||
info: "Led UI/UX design and frontend development for Net0's sustainability platform. Built with React, creating an intuitive system that combines eco-conscious practices with modern technology.",
|
subtitle: "Lead UI/UX Designer & Frontend Developer",
|
||||||
|
info: "As the lead UI/UX designer and frontend developer for Net0's sustainability platform, I spearheaded the creation of an intuitive system that seamlessly integrates eco-conscious practices with modern technology. Built with React and TypeScript, the platform features a comprehensive dashboard for tracking carbon emissions, implementing sustainable practices, and generating detailed reports. I collaborated closely with the backend team to ensure smooth integration with the Node.js and PostgreSQL infrastructure, while maintaining a strong focus on user experience and accessibility throughout the development process.",
|
||||||
img: ["/img/net0_0.png", "/img/net0_1.png", "/img/net0_2.png"],
|
img: ["/img/net0_0.png", "/img/net0_1.png", "/img/net0_2.png"],
|
||||||
previewImg: "/img/mockup_net0.png",
|
previewImg: "/img/mockup_net0.png",
|
||||||
tags: [
|
tags: [
|
||||||
@ -20,15 +21,18 @@ const experianceList = [
|
|||||||
"Javascript",
|
"Javascript",
|
||||||
],
|
],
|
||||||
link: "https://www.net0.se",
|
link: "https://www.net0.se",
|
||||||
|
sortOrder: 2
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "55515a25-deb1-451c-bc7d-006d293f54aa",
|
id: "55515a25-deb1-451c-bc7d-006d293f54aa",
|
||||||
title: "Lets fly",
|
title: "Lets fly",
|
||||||
info: "Developed an aviation services platform using Next.js and WordPress. Implemented GraphQL for efficient data management and Tailwind for responsive design, with a focus on client-requested WordPress integration.",
|
subtitle: "Full Stack Developer",
|
||||||
|
info: "Developed a comprehensive aviation services platform using Next.js and WordPress, focusing on creating a seamless experience for both service providers and clients. Implemented GraphQL for efficient data management and real-time updates, while utilizing Tailwind CSS for responsive and modern design. The platform features a sophisticated booking system, real-time availability tracking, and integrated payment processing. I worked closely with the client to ensure the WordPress integration met their specific requirements while maintaining high performance and security standards throughout the development process.",
|
||||||
img: ["/img/letsfly_1.png", "/img/letsfly_2.png", "/img/letsfly_3.png"],
|
img: ["/img/letsfly_1.png", "/img/letsfly_2.png", "/img/letsfly_3.png"],
|
||||||
tags: ["React", "NextJS", "Wordpress", "GraphQL", "MySQL", "Tailwind"],
|
tags: ["React", "NextJS", "Wordpress", "GraphQL", "MySQL", "Tailwind"],
|
||||||
link: "https://preview.letsfly.app/",
|
link: "https://preview.letsfly.app/",
|
||||||
previewImg: "/img/mockup_net0.png",
|
previewImg: "/img/mockup_net0.png",
|
||||||
|
sortOrder: 3
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 4,
|
id: 4,
|
||||||
@ -38,11 +42,15 @@ const experianceList = [
|
|||||||
img: ["/images/datatjej-placeholder.jpg"],
|
img: ["/images/datatjej-placeholder.jpg"],
|
||||||
previewImg: "/images/datatjej-placeholder.jpg",
|
previewImg: "/images/datatjej-placeholder.jpg",
|
||||||
tags: ["Next.js", "Tailwind CSS", "Board Member", "Web Development", "Automation"],
|
tags: ["Next.js", "Tailwind CSS", "Board Member", "Web Development", "Automation"],
|
||||||
link: "https://datatjej.se"
|
link: "https://datatjej.se",
|
||||||
|
sortOrder: 1
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
export const projectsAtom = atom({ key: "projects", default: experianceList });
|
// Sort the list by sortOrder
|
||||||
|
const sortedExperianceList = [...experianceList].sort((a, b) => a.sortOrder - b.sortOrder);
|
||||||
|
|
||||||
|
export const projectsAtom = atom({ key: "projects", default: sortedExperianceList });
|
||||||
export const skillsAtom = atom({
|
export const skillsAtom = atom({
|
||||||
key: "skills",
|
key: "skills",
|
||||||
default: {
|
default: {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user