Files
gabrielkaszewski-next/app/layout.tsx
Gabriel Kaszewski 9e95d5c544
All checks were successful
Build and Deploy Gabriel Kaszewski Portfolio / build-and-deploy-local (push) Successful in 1m32s
Add new documents and images to the public directory
- Added essays: qui-sumus-existential-dread.pdf and licencjat.pdf
- Added scripts: loop.pdf
- Added images: DSC_1283.avif, GAK00015.avif, GAK00017.avif, GAK00041.avif, GAK00042.avif, painter.avif, parasitic-god-1.avif, parasitic-god-2.avif, parasitic-god-3.avif, parasitic-god-4.avif, parasitic-god-5.avif, spanish-inq-1.avif, spanish-inq-2.avif, spanish-inq-3.avif, spanish-inq-4.avif, typing-game-1.avif, typing-game-2.avif
2026-08-20 01:39:14 +02:00

110 lines
2.6 KiB
TypeScript

import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import Navbar from "@/components/navbar";
import Footer from "@/components/footer";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
metadataBase: new URL("https://gabrielkaszewski.dev"),
title: {
default: "Gabriel Kaszewski | Software Engineer",
template: "%s | Gabriel Kaszewski",
},
description:
"The portfolio of Gabriel Kaszewski, a software engineer specializing in Rust, Python, and modern web technologies.",
keywords: [
"Gabriel Kaszewski",
"Software Engineer",
"Rust Developer",
"Python Developer",
"Next.js",
"Portfolio",
],
alternates: {
canonical: "https://gabrielkaszewski.dev",
},
openGraph: {
title: "Gabriel Kaszewski | Software Engineer",
description:
"Welcome to my portfolio. Discover my projects, skills, and journey.",
url: "https://gabrielkaszewski.dev",
siteName: "Gabriel Kaszewski's Portfolio",
locale: "en_US",
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Gabriel Kaszewski | Software Engineer",
description:
"Explore my work as a software engineer, from web apps to game development.",
},
robots: {
index: true,
follow: true,
googleBot: {
index: true,
follow: true,
"max-video-preview": -1,
"max-image-preview": "large",
"max-snippet": -1,
},
},
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
const jsonLd = {
"@context": "https://schema.org",
"@type": "Person",
name: "Gabriel Kaszewski",
url: "https://gabrielkaszewski.dev",
sameAs: [
"https://github.com/GKaszewski",
"https://www.linkedin.com/in/gabriel-kaszewski-5344b3183",
],
jobTitle: "Software Engineer",
alumniOf: "University of Gdańsk",
knowsAbout: [
"Rust",
"Python",
"Next.js",
"React",
"Tailwind CSS",
"Game Development",
"Web Development",
],
};
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased relative`}
>
<script
type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify(jsonLd) }}
/>
<Navbar />
<main>{children}</main>
<Footer />
</body>
</html>
);
}