Skip to content

Commit

Permalink
feature(update-text-magic): Prettify projects texts
Browse files Browse the repository at this point in the history
  • Loading branch information
Z-100 committed Apr 6, 2024
1 parent aeb4bea commit d6938b2
Show file tree
Hide file tree
Showing 6 changed files with 66 additions and 66 deletions.
46 changes: 0 additions & 46 deletions src/domain/mock-db/featured-projects-data.ts

This file was deleted.

1 change: 1 addition & 0 deletions src/domain/mock-db/index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export * from './socials-data';
export * from './text-data';
export * from './projects-data';
18 changes: 0 additions & 18 deletions src/domain/mock-db/planned-projects-data.ts

This file was deleted.

63 changes: 63 additions & 0 deletions src/domain/mock-db/projects-data.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
import {Project} from '../models';

export const featuredProjectsData: Project[] = [
{
name: 'Vayan',
shortDesc: 'This website',
desc: 'I\'m no frontend dev. I\'m really not. At least it doesn\'t look like the original Apache Java Docs :)',
url: 'https://github.com/Z-100/vayan',
img: '/favicon.ico'
},
{
name: 'Sömi-Weather',
shortDesc: 'Literal weather app...',
desc: 'Camunda-, kTor- & React-Microservices running in AKS',
url: 'https://github.com/Z-100/soemi-weather',
img: '/aks-logo.png'
},
{
name: 'GeoPal',
shortDesc: 'Geo Reminder App',
desc: 'Basically a location based reminder app, where I also focused on the UI. I\'m definitely a backend dev',
url: 'https://github.com/ZE-100/GeoPal',
img: '/android-logo.png'
},
{
name: 'BackFusion',
shortDesc: 'Kotlin and Spring Boot',
desc: 'The backend to a gym-tracking app written in Kotlin. More of an experiment.',
url: 'https://github.com/FitFusion/BackFusion',
img: '/fitfusion-logo.jpg'
},
{
name: 'DayCounter',
shortDesc: 'Cute day counter app',
desc: 'One of my first Android apps! It counts down days in a cute way',
url: 'https://github.com/ZE-100/DayCounter',
img: '/android-logo.png'
},
{
name: 'More projects',
shortDesc: 'Wanna see more?',
desc: 'There are lots of other projects on my GitHub!',
url: 'https://github.com/Z-100?tab=repositories',
img: '/github-logo.png'
},
]

export const plannedProjectsData: Project[] = [
{
name: "DMZ",
shortDesc: "Document Management Zystem",
desc: "I wanna create my own DMS-System to manage... documents 🥁",
url: "https://github.com/Z-100/DMZ",
img: "/logo171.png"
},
{
name: "k8s",
shortDesc: "Soon to be self hosted Kubernetes Cluster",
desc: "All of my projects should run here eventually. That's the end goal.",
url: "https://github.com/Z-100/k8s",
img: "/kubernetes-logo.png"
},
]
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import {ProjectSection} from "../../../../components";
import {featuredProjectsData} from "../../../../domain/mock-db/featured-projects-data";
import {featuredProjectsData} from "../../../../domain";

export const FeaturedProjectsContainer = () => {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import {ProjectSection} from "../../../../components";
import {plannedProjectsData} from "../../../../domain/mock-db/planned-projects-data";
import {plannedProjectsData} from "../../../../domain";

export const PlannedProjectsContainer = () => {

Expand Down

0 comments on commit d6938b2

Please sign in to comment.