51 lines
1.2 KiB
TypeScript
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",
|
|
},
|
|
],
|
|
},
|
|
});
|