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} />
</>;
}

View File

@@ -2,7 +2,7 @@ import {Html, Head, Main, NextScript} from "next/document";
export default function Document() {
return (
<Html>
<Html lang="en">
<Head/>
<body>
<Main/>

View File

@@ -1,12 +1,6 @@
//import "./globals.css";
import { Inter } from "next/font/google";
import { Work_Sans } from "next/font/google";
const inter = Inter({ subsets: ["latin"] });
export const metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
const workSans = Work_Sans({ subsets: ["latin"] });
export default function RootLayout({
children,
@@ -15,7 +9,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
<body className={workSans.className}>{children}</body>
</html>
);
}