Preparation for proper release

This commit is contained in:
2023-08-05 18:49:04 +01:00
parent 25cda7ef65
commit 25b1250df7
20 changed files with 366 additions and 508 deletions

View File

@@ -6,6 +6,8 @@ import "../src/styles/main.scss";
import "aos/dist/aos.css";
import "@splidejs/splide/css/sea-green";
import Head from "next/head";
export default function MyApp({ Component, pageProps }: AppProps) {
useEffect(() => {
// here you can add your aos options
@@ -14,5 +16,28 @@ export default function MyApp({ Component, pageProps }: AppProps) {
});
}, []);
return <Component {...pageProps} />;
return <>
<Head>
<title>Patryk Kuchta</title>
<meta name = "description" content = {
"Welcome to my Portfolio Website. My name is Patryk Kuchta." +
"Explore a showcase of my projects, education and work experience." +
"Discover the passion and expertise of a dedicated computer scientist," +
"poised to make a lasting impact in the world of technology."
} />
<link rel="manifest" href="manifest.json" />
<meta property="og:title" content="Patryk Kuchta's Portfolio"/>
<meta property="og:description" content="Explore a showcase of my projects, education and work experience."/>
<meta property="og:image" content="https://kuchta.uk/logo.svg"/>
<meta property="og:url" content="https://kuchta.uk"/>
<meta property="og:type" content="website"/>
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content="Patryk Kuchta's Portfolio"/>
<meta name="twitter:description" content="Explore a showcase of my projects, education and work experience."/>
<meta name="twitter:image" content="https://kuchta.uk/logo.svg"/>
</Head>
<Component {...pageProps} />
</>;
}