Skip to content

Commit 566bc49

Browse files
committed
minor tweak
1 parent 9cc03d3 commit 566bc49

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

layouts/components/AppTopbar.vue

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import { Dialog, DialogPanel } from '@headlessui/vue';
44
import { Bars3Icon, XMarkIcon } from '@heroicons/vue/24/outline';
55
66
const navigation = [
7-
{ name: 'shared.about', href: '/' },
8-
{ name: 'shared.resume', href: '#resume' },
9-
{ name: 'shared.skills', href: '#skills' },
10-
{ name: 'shared.projects', href: '#projects' },
7+
{ name: 'shared.about', href: '/#about' },
8+
{ name: 'shared.skills', href: '/#skills' },
9+
{ name: 'shared.projects', href: '/#projects' },
10+
{ name: 'shared.resume', href: '/#resume' },
1111
{ name: 'shared.blog', href: '/blog' },
1212
];
1313

pages/blog/[...slug].vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const processTags = (value?: string): string[] => {
3131
</script>
3232

3333
<template>
34-
<div class="p-1">
34+
<div class="mt-20 p-1">
3535
<div v-if="page" class="space-y-1">
3636
<div class="lg:p-8 p-1 border-b text-center">
3737
<h1

pages/index.vue

+3-4
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ useSeoMeta({
6060
</div>
6161
</div>
6262
<div class="space-x-4 flex sm:justify-center md:justify-start">
63-
<Button severity="gray-600" class="p-2 text-gray-500 hover:bg-gray-400" outlined label="Send Email" />
63+
<Button severity="gray-600" class="p-2 text-gray-500 hover:bg-gray-400" outlined label="Contact Me" />
6464
<Button class="p-2 hover:bg-blue-600" label="Download CV" />
6565
</div>
6666
</div>
@@ -69,7 +69,7 @@ useSeoMeta({
6969
<section id="projects" class="p-6 sm:p-2">
7070
<div class="container--inverse">
7171
<div class="text-gray-500">
72-
<h2 class="text-3xl font-bold">My Projects</h2>
72+
<h2 class="text-5xl font-bold">Projects</h2>
7373
<p class="text-xl">Checkout a few of my works!</p>
7474
</div>
7575

@@ -92,14 +92,13 @@ useSeoMeta({
9292
<p>Password: demo</p>
9393
</div>
9494

95-
9695
<div class="flex flex-row space-x-2 py-2">
9796
<span v-for="tech in [
9897
{ name: 'Vue', icon: 'pi pi-star'},
9998
{ name: 'Nuxt', icon: 'pi pi-star'},
10099
{ name: 'Typescript', icon: 'pi pi-star'},
101100
{ name: 'Docker', icon: 'pi pi-star'},
102-
]" to="#" class="relative z-10 rounded-md bg-blue-100 py-1.5 px-3 font-medium text-gray-400 hover:bg-gray-300">
101+
]" to="#" class="relative z-10 rounded-md border-2 border-gray-200 py-1.5 px-3 font-medium text-gray-400 hover:bg-gray-300">
103102
<i :class="tech.icon"></i>
104103
{{ tech.name }}</span>
105104
</div>

0 commit comments

Comments
 (0)