Files
FernandoJVideira 1bfc6fbaa8
ci / ci (22, ubuntu-latest) (push) Failing after 8m9s
Initial Commit
2026-03-30 02:18:38 +01:00

51 lines
1.2 KiB
TypeScript

export default defineAppConfig({
global: {
picture: {
dark: "/images/focinho.jpg",
light: "/images/focinho.jpg",
alt: "My profile picture",
},
meetingLink: "https://cal.com/",
email: "[email protected]",
available: true,
},
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: `Built with Nuxt UI • © ${new Date().getFullYear()}`,
colorMode: false,
links: [
{
icon: "i-simple-icons-discord",
to: "https://go.nuxt.com/discord",
target: "_blank",
"aria-label": "Nuxt on Discord",
},
{
icon: "i-simple-icons-x",
to: "https://go.nuxt.com/x",
target: "_blank",
"aria-label": "Nuxt on X",
},
{
icon: "i-simple-icons-github",
to: "https://github.com/nuxt/ui",
target: "_blank",
"aria-label": "Nuxt UI on GitHub",
},
],
},
});