feat: add Dockerfile and deployment configuration; update metadata and project descriptions
Some checks failed
Build and Deploy Gabriel Kaszewski Portfolio / build-and-deploy-local (push) Failing after 10s

This commit is contained in:
2025-09-08 19:24:06 +02:00
parent a99b6353be
commit 368086f9bd
8 changed files with 155 additions and 5 deletions

View File

@@ -3,7 +3,6 @@ import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import Navbar from "@/components/navbar";
import Footer from "@/components/footer";
import Image from "next/image";
const geistSans = Geist({
variable: "--font-geist-sans",
@@ -16,8 +15,48 @@ const geistMono = Geist_Mono({
});
export const metadata: Metadata = {
title: "Gabriel Kaszewski",
description: "Welcome to my portfolio",
title: {
default: "Gabriel Kaszewski | Full-Stack Developer",
template: "%s | Gabriel Kaszewski",
},
description:
"The portfolio of Gabriel Kaszewski, a self-taught full-stack developer specializing in Rust, Python, and modern web technologies.",
keywords: [
"Gabriel Kaszewski",
"Full-Stack Developer",
"Rust Developer",
"Python Developer",
"Next.js",
"Portfolio",
],
openGraph: {
title: "Gabriel Kaszewski | Full-Stack Developer",
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 | Full-Stack Developer",
description:
"Explore my work as a full-stack developer, 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({
@@ -25,11 +64,38 @@ export default function RootLayout({
}: 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: "Full-Stack Developer",
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 />
{children}
<Footer />