-
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.
Implemented functional code and basic layout for project view
- Loading branch information
1 parent
1d05c0d
commit 87971d4
Showing
7 changed files
with
90 additions
and
8 deletions.
There are no files selected for viewing
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
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,30 @@ | ||
<script setup lang="ts"> | ||
import type { Project } from '@/lib/types/project' | ||
defineProps<{ | ||
project: Project | ||
}>() | ||
</script> | ||
|
||
<template> | ||
<q-card class="p-card bg-primary" dark> | ||
<q-card-section horizontal> | ||
<q-card-section class="col-2"> | ||
<div class="text-h6">{{ project.name }}</div> | ||
<div class="text-subtitle2">{{ project.company }}</div> | ||
</q-card-section> | ||
|
||
<q-card-section class="col-8 text-center"> | ||
<p>{{ project.description }}</p> | ||
</q-card-section> | ||
|
||
<q-card-section class="col-2 text-center"> | ||
<p>{{ project.techstack }}</p> | ||
</q-card-section> | ||
|
||
<!-- Maybe images in future? <q-img class="col-5" src="https://cdn.quasar.dev/img/parallax2.jpg" /> --> | ||
</q-card-section> | ||
</q-card> | ||
</template> | ||
|
||
<style scoped></style> |
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 |
---|---|---|
|
@@ -14,7 +14,7 @@ export const joshContact: Contact = { | |
` year old Fullstack Engineer from Rochester, Minnesota. Most of my enterprise work has revolved around using Vue/React/Angular, .Net/FastAPI, and SQL or Cosmos Databases. | ||
I am always trying new technologies and the projects represented here are a small scope of my work. Everything from game development to assembly, I've touched it all at some point! | ||
Quick to learn and quick to perform. My goal as a Software Engineer is to better the lives of people through quality software making a substantial impact on their day to day to operations. | ||
I'm always open to chat about any of my projects, previous roles, and experiences I've had in this field. Let's get better together!`, | ||
I'm always open to chat about any of my projects, previous roles, and experiences I've had in this field. Outside of work I am an amateur strongman and enjoy my fair share of RPGs. Let's get better together!`, | ||
linkedin: 'https://www.linkedin.com/in/kronemeyerj/', | ||
github: 'https://github.com/KronemeyerJoshua', | ||
email: '[email protected]' | ||
|
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
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
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,25 @@ | ||
<script setup lang="ts"> | ||
import { allprojects } from '@/lib/projects' | ||
import { useRoute } from 'vue-router' | ||
import { onBeforeMount, ref } from 'vue' | ||
import type { Project } from '@/lib/types/project' | ||
const projectSelected = ref<Project>() | ||
// Determining Project via Params instead of props ensures that | ||
// User will always get the project, regardless of where they are coming from | ||
onBeforeMount(() => { | ||
const route = useRoute() | ||
allprojects.forEach((p) => { | ||
if (p.name === route.params.project) { | ||
projectSelected.value = p | ||
} | ||
}) | ||
}) | ||
</script> | ||
|
||
<template> | ||
<div>{{ projectSelected?.name }}</div> | ||
<div>{{ projectSelected?.company }}</div> | ||
<div>{{ projectSelected?.description }}</div> | ||
</template> |
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,10 @@ | ||
<script setup lang="ts"> | ||
import ProjectCard from '@/components/ProjectCard.vue' | ||
import { allprojects } from '@/lib/projects' | ||
</script> | ||
|
||
<template> | ||
<RouterLink v-for="p in allprojects" :key="p.name" :to="'/projects/' + p.name"> | ||
<ProjectCard :project="p" class="q-mb-sm"></ProjectCard> | ||
</RouterLink> | ||
</template> |