mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-14 18:59:59 +01:00
- Added '@nuxtjs/mdc' module to nuxt.config.ts for improved UI components. - Configured MDC settings to disable anchor links for headings. - Updated API proxy settings to include '/api/uses' and a general '/api/' endpoint. - Introduced new dependencies for AI SDKs and tools in package.json. - Created a new chat API endpoint to handle AI interactions with various tools. - Implemented utility functions for activity tracking, resource reading, resume retrieval, statistics, status monitoring, and categorized tool usage. - Updated social links in types/index.ts to redirect through a custom domain. - Updated worker configuration to include AI binding for Cloudflare.
38 lines
523 B
CSS
38 lines
523 B
CSS
@import "tailwindcss";
|
|
@import "@nuxt/ui";
|
|
|
|
:root {
|
|
--animate-wave: wave 3s infinite;
|
|
|
|
--ui-bg: #f8f8f8;
|
|
|
|
--ui-font-family: 'DM Sans', sans-serif;
|
|
transition-duration: 0.7s;
|
|
}
|
|
|
|
.dark {
|
|
--animate-wave: wave 3s infinite;
|
|
|
|
--ui-bg: #0f0f0f;
|
|
|
|
--ui-font-family: 'DM Sans', sans-serif;
|
|
transition-duration: 0.7s;
|
|
}
|
|
|
|
.sofia {
|
|
--ui-font-family: 'Sofia Sans', sans-serif;
|
|
}
|
|
|
|
@keyframes wave {
|
|
|
|
0%,
|
|
50%,
|
|
100% {
|
|
transform: rotate(-12deg);
|
|
}
|
|
|
|
25%,
|
|
75% {
|
|
transform: rotate(3deg) scale(1.5);
|
|
}
|
|
} |