Files
blog/app/layout.tsx
Gabriel Kaszewski 8a921b0423 Add new blog posts and update existing content
- Created "My 2023 Coding Edition" post detailing projects and experiences in Rust and game development.
- Added "My 2024 and 2025 roadmap" outlining goals and projects for the upcoming years.
- Introduced "Python Tutorial - Introduction" and "Python - Variables" posts to teach Python programming basics.
- Published "ROADMAP for 2023" to outline initial goals for the year.
- Added "My Rust little adventure" post summarizing various Rust projects undertaken.
- Released "Spanish Inquisition - 3.0.1 UPDATE" detailing the latest game update and features.
- Added multiple background images in AVIF format for website use.
- Removed unused SVG files to clean up the public directory.
2025-09-03 23:27:41 +02:00

43 lines
986 B
TypeScript

import type { Metadata } from "next";
import "./globals.css";
import localFont from "next/font/local";
import SwitchingBackground from "@/components/switching-background";
import CursorEffect from "@/components/cursor-effect";
const frutiger = localFont({
src: [
{
path: "./frutiger.woff",
weight: "normal",
style: "normal",
},
{
path: "./frutiger-bold.woff",
weight: "bold",
style: "normal",
},
],
variable: "--font-frutiger",
});
export const metadata: Metadata = {
title: "Gabriel Kaszewski's Blog",
description: "A personal blog by Gabriel Kaszewski",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className={`${frutiger.className} antialiased`}>
<SwitchingBackground />
<CursorEffect />
<main className="container mx-auto px-4 py-8 md:py-12">{children}</main>
</body>
</html>
);
}