Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# editorconfig.org
root = true

[*]
indent_size = 2
indent_style = space
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Public URL, used for OG Image when running nuxt generate
NUXT_PUBLIC_SITE_URL=https://fmeyer.dev
34 changes: 34 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: ci

on: push

jobs:
ci:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]
node: [22]

steps:
- name: Checkout
uses: actions/checkout@v6

- name: Install pnpm
uses: pnpm/action-setup@v4

- name: Install node
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: pnpm

- name: Install dependencies
run: pnpm install

- name: Lint
run: pnpm run lint

- name: Typecheck
run: pnpm run typecheck
46 changes: 23 additions & 23 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,42 +1,42 @@
name: Deploy
name: deploy

on:
push:
branches:
- main # Set a branch to deploy
- main
workflow_dispatch:

jobs:
deploy:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

steps:
- uses: actions/checkout@v3
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Checkout
uses: actions/checkout@v6

- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: 'latest'
extended: true
- name: Install pnpm
uses: pnpm/action-setup@v4

- uses: actions/cache@v2
- name: Install Node
uses: actions/setup-node@v6
with:
path: /tmp/hugo_cache
key: ${{ runner.os }}-hugomod-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-hugomod-
node-version: 22
cache: pnpm

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Build
run: hugo --minify
- name: Generate static site
run: pnpm generate

- name: Deploy
uses: SamKirkland/FTP-Deploy-Action@4.3.0
- name: Deploy via FTP
uses: SamKirkland/FTP-Deploy-Action@v4.3.6
with:
server: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
local-dir: ./public/
server-dir: ./httpdocs/
local-dir: ./.output/public/
server-dir: ./httpdocs/
dangerous-clean-slate: true
33 changes: 30 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,31 @@
# Nuxt dev/build outputs
.output
.data
.nuxt
.nitro
.cache
dist

# Node dependencies
node_modules

# Logs
logs
*.log

# Playwright artifacts
.playwright-cli/
output/playwright/

# Misc
.DS_Store
.fleet
.idea
/public/
.hugo_build.lock
resources/_gen

# Local env files
.env
.env.*
!.env.example

# VSC
.history
6 changes: 0 additions & 6 deletions .gitmodules

This file was deleted.

21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2025 Nuxt UI Templates

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
64 changes: 62 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,62 @@
# fmeyer.dev
this is the repository for my website fmeyer.dev
# Nuxt Portfolio Template

[![Nuxt UI](https://img.shields.io/badge/Made%20with-Nuxt%20UI-00DC82?logo=nuxt&labelColor=020420)](https://ui.nuxt.com)

Use this template to create your own portfolio with [Nuxt UI](https://ui.nuxt.com).

- [Live demo](https://portfolio-template.nuxt.dev/)
- [Documentation](https://ui.nuxt.com/getting-started/installation)

<a href="https://portfolio-template.nuxt.dev/" target="_blank">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://ui.nuxt.com/assets/templates/nuxt/portfolio-dark.png">
<source media="(prefers-color-scheme: light)" srcset="https://ui.nuxt.com/assets/templates/nuxt/portfolio-light.png">
<img alt="Nuxt Portfolio Template" src="https://ui.nuxt.com/assets/templates/nuxt/portfolio-dark.png">
</picture>
</a>

## Quick Start

```bash [Terminal]
npm create nuxt@latest -- -t ui/portfolio
```

## Deploy your own

[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-name=portfolio&repository-url=https%3A%2F%2Fgithub.com%2Fnuxt-ui-templates%2Fportfolio&demo-image=https%3A%2F%2Fui.nuxt.com%2Fassets%2Ftemplates%2Fnuxt%2Fportfolio-dark.png&demo-url=https%3A%2F%2Fportfolio-template.nuxt.dev%2F&demo-title=Nuxt%20Portfolio%20Template&demo-description=A%20sleek%20portfolio%20template%20to%20showcase%20your%20work%2C%20skills%20and%20blog%20powered%20by%20Nuxt%20Content.)

## Setup

Make sure to install the dependencies:

```bash
pnpm install
```

## Development Server

Start the development server on `http://localhost:3000`:

```bash
pnpm dev
```

## Production

Build the application for production:

```bash
pnpm build
```

Locally preview production build:

```bash
pnpm preview
```

Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.

## Renovate integration

Install [Renovate GitHub app](https://github.com/apps/renovate/installations/select_target) on your repository and you are good to go.
44 changes: 44 additions & 0 deletions app/app.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
export default defineAppConfig({
global: {
picture: {
dark: '/profile/fabian-meyer-portrait.jpg',
light: '/profile/fabian-meyer-portrait.jpg',
alt: 'Fabian Meyer'
},
meetingLink: '',
email: 'hello@fmeyer.dev',
available: false
},
ui: {
colors: {
primary: 'blue',
neutral: 'neutral'
},
pageHero: {
slots: {
container: 'py-18 sm:py-24 lg:py-32',
title: 'mx-auto max-w-xl text-pretty text-3xl sm:text-4xl lg:text-5xl',
description: 'mt-2 text-md mx-auto max-w-2xl text-pretty sm:text-md text-muted'
}
}
},
footer: {
credits: `fmeyer.dev • © ${new Date().getFullYear()}`,
colorMode: false,
links: [{
'icon': 'i-simple-icons-github',
'to': 'https://github.com/dinooo13',
'target': '_blank',
'aria-label': 'Fabian Meyer on GitHub'
}, {
'icon': 'i-simple-icons-linkedin',
'to': 'https://linkedin.com/in/fabian-meyer-02038813a',
'target': '_blank',
'aria-label': 'Fabian Meyer on LinkedIn'
}, {
'icon': 'i-lucide-mail',
'to': 'mailto:hello@fmeyer.dev',
'aria-label': 'Email Fabian Meyer'
}]
}
})
42 changes: 42 additions & 0 deletions app/app.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<script setup lang="ts">
const route = useRoute()
const runtimeConfig = useRuntimeConfig()
const colorMode = useColorMode()

const color = computed(() => colorMode.value === 'dark' ? '#020618' : 'white')
const canonicalUrl = computed(() => {
return new URL(route.path || '/', runtimeConfig.public.siteUrl).toString()
})

useHead({
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ key: 'theme-color', name: 'theme-color', content: color }
],
link: [
{ rel: 'icon', href: '/favicon.ico' },
{ rel: 'canonical', href: canonicalUrl }
],
htmlAttrs: {
lang: 'en'
}
})

useSeoMeta({
titleTemplate: '%s - fmeyer.dev',
ogSiteName: 'fmeyer.dev',
ogUrl: canonicalUrl,
twitterCard: 'summary'
})
</script>

<template>
<UApp>
<NuxtLayout>
<UMain class="relative">
<NuxtPage />
</UMain>
</NuxtLayout>
</UApp>
</template>
Binary file added app/assets/Onboarding Your Agent.pdf
Binary file not shown.
25 changes: 25 additions & 0 deletions app/assets/css/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
@import "tailwindcss";
@import "@nuxt/ui";

@source "../../../content/**/*";

@theme static {
--font-sans: 'Public Sans', sans-serif;
--font-serif: 'Instrument Serif', serif;
}

:root {
--ui-container: var(--container-4xl);

::selection {
color: #282a30;
background-color: #c8c8c8;
}
}

.dark {
::selection {
color: #ffffff;
background-color: #474747;
}
}
21 changes: 21 additions & 0 deletions app/components/AppFooter.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<script setup lang="ts">
const { footer } = useAppConfig()
</script>

<template>
<footer class="z-10 bg-default py-8">
<UContainer class="flex flex-col items-center gap-3">
<div class="flex items-center gap-2">
<UButton
v-for="(link, index) of footer?.links"
:key="index"
v-bind="{ size: 'xs', color: 'neutral', variant: 'ghost', ...link }"
class="text-highlighted hover:text-highlighted"
/>
</div>
<p class="text-xs text-muted">
{{ footer.credits }}
</p>
</UContainer>
</footer>
</template>
Loading