-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature(update-text-magic): Prettify projects texts
- Loading branch information
Showing
6 changed files
with
66 additions
and
66 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
}, | ||
] |
2 changes: 1 addition & 1 deletion
2
src/pages/projects/components/featured-projects/FeaturedProjectsContainer.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/pages/projects/components/planned-projects/PlannedProjectsContainer.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters