Initial commit

This commit is contained in:
2023-07-30 21:35:47 +01:00
commit 24c6dbe278
70 changed files with 6764 additions and 0 deletions

18
pages/_app.tsx Normal file
View File

@@ -0,0 +1,18 @@
import { AppProps } from "next/app";
import { useEffect } from "react";
import AOS from "aos";
import "../src/styles/main.scss";
import "aos/dist/aos.css";
import "@splidejs/splide/css/sea-green";
export default function MyApp({ Component, pageProps }: AppProps) {
useEffect(() => {
// here you can add your aos options
AOS.init({
offset: 100,
});
}, []);
return <Component {...pageProps} />;
}