Skip to content

Commit

Permalink
chore: commit remaining changes before archiving
Browse files Browse the repository at this point in the history
  • Loading branch information
rxsto committed Oct 12, 2024
1 parent dcaa7e3 commit 6fc5de0
Show file tree
Hide file tree
Showing 6 changed files with 57 additions and 0 deletions.
9 changes: 9 additions & 0 deletions components/core/CoreContactCta.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<template>
<div>
contact cta
</div>
</template>

<script lang="ts" setup>
</script>
10 changes: 10 additions & 0 deletions config/projects.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export const Hydra: Project = {
title: 'Hydra',
slogan: 'The only Discord bot you\'ll ever need.',
description: 'tbd',
cover: '/img/projects/hydra.png',
status: ProjectStatus.ACTIVE,
featured: true,
url: 'https://hydra.bot',
color: '#4999b3'
}
7 changes: 7 additions & 0 deletions pages/about.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
<img src="~/assets/img/avatar.jpg" class="w-72 select-none" draggable="false" />
<DefaultTrackViewer class="-bottom-12 left-12" />
</div>
<p>
who am i
</p>
<p>
what do i like doing
</p>
<CoreContactCta />
</div>
</template>

Expand Down
10 changes: 10 additions & 0 deletions pages/work.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
<template>
<div class="flex flex-col gap-4 p-8 pt-[112px]">
<p>work</p>
<p>
row of incomplete projects i'm working on
</p>
<p>
matrix of technologies i'm using
</p>
<p>
list of complete projects i've worked on
</p>
<CoreContactCta />
</div>
</template>

Expand Down
16 changes: 16 additions & 0 deletions types/projects.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
interface Project {
title: string
slogan: string
description: string
cover: string
status: ProjectStatus
featured: boolean
url: string
color: string
}

enum ProjectStatus {
TBA,
ACTIVE,
FINISHED
}
5 changes: 5 additions & 0 deletions types/technologies.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
interface Technology {
name: string
description: string
icon: string
}

0 comments on commit 6fc5de0

Please sign in to comment.