feat: stricter lint, check pipelines, docker-containers, pnpm

This commit is contained in:
2026-02-22 17:48:51 +00:00
parent 40ca6ef94a
commit b697ad823a
50 changed files with 4976 additions and 5431 deletions

View File

@@ -8,11 +8,11 @@ import "@splidejs/splide/css/sea-green";
import Head from "next/head";
export default function MyApp({ Component, pageProps }: AppProps) {
export default function MyApp({ Component, pageProps }: AppProps): JSX.Element {
useEffect(() => {
// here you can add your aos options
AOS.init({
offset: 100,
offset: 100
});
}, []);
@@ -42,4 +42,4 @@ export default function MyApp({ Component, pageProps }: AppProps) {
</Head>
<Component {...pageProps} />
</>;
}
}