Skip to content

Commit ac2200c

Browse files
authored
Merge pull request #3 from nmack41/dev_mountainproject_pull
updated view climbs
2 parents 7cc73c7 + 1767515 commit ac2200c

File tree

10 files changed

+3142
-2891
lines changed

10 files changed

+3142
-2891
lines changed

app.vue

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,26 @@
11
<template>
2-
<NuxtLayout class="flex flex-col h-screen pt-24">
3-
<NuxtPage class="flex-grow overflow-auto" />
4-
</NuxtLayout>
2+
<div class="app-wrapper">
3+
<NuxtLayout>
4+
<NuxtPage class="flex-grow overflow-auto" />
5+
</NuxtLayout>
6+
</div>
57
</template>
68

79
<script setup lang="ts">
810
useSeoMeta({
9-
title: 'Nick Mackowski',
10-
ogTitle: 'Nick Mackowski',
11-
description: 'Site of Nick Mackowski',
12-
ogDescription: 'Site of Nick Mackowski',
13-
ogImage: 'assets/Nick_circle_2.png',
14-
})
15-
</script>
11+
title: "Nick Mackowski",
12+
ogTitle: "Nick Mackowski",
13+
description: "Site of Nick Mackowski",
14+
ogDescription: "Site of Nick Mackowski",
15+
ogImage: "assets/Nick_circle_2.png",
16+
});
17+
</script>
18+
19+
<style>
20+
.app-wrapper {
21+
display: flex;
22+
flex-direction: column;
23+
height: 100vh;
24+
padding-top: 6rem;
25+
}
26+
</style>

0 commit comments

Comments
 (0)