Files
Portfolio-Game/frontend/app/pages/resume.vue
skycel ca828d86b4 Add layouts, routing, transitions & pages (Story 1.4)
Default layout with sticky AppHeader (nav, LanguageSwitcher, mobile hamburger),
AppFooter with social links. Minimal layout for express mode. 7 placeholder pages
with localized EN routes. Page transitions (fade+slide), prefers-reduced-motion
support, custom scroll behavior, error.vue, useSeo composable, SVG favicon.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-05 18:35:31 +01:00

21 lines
466 B
Vue

<template>
<div class="min-h-screen p-8">
<h1 class="text-3xl font-narrative text-sky-text">{{ $t('pages.resume.title') }}</h1>
<p class="mt-4 text-sky-text/70">{{ $t('pages.resume.description') }}</p>
</div>
</template>
<script setup lang="ts">
definePageMeta({
layout: 'minimal',
})
const { setPageMeta } = useSeo()
const { t } = useI18n()
setPageMeta({
title: t('pages.resume.title'),
description: t('pages.resume.description'),
})
</script>