From 39d95d54bdbc5de942f65aaa8c136a55435d6964 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 09:50:49 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b7004da..1a95763 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,25 +1,18 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; -import { Poppins } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); - export const metadata: Metadata = { title: "Berkant Ay - Building RL Environments for AGI", description: "AI researcher and builder based in Berlin. Creating advanced reinforcement learning systems and agentic orchestration solutions.", keywords: "AI, reinforcement learning, AGI, machine learning, research, startup, Berlin", openGraph: { title: "Berkant Ay - Building RL Environments for AGI", description: "AI researcher and builder based in Berlin. Creating advanced reinforcement learning systems and agentic orchestration solutions.", type: "website", siteName: "Berkant Ay", images: [ @@ -46,7 +39,7 @@ export default function RootLayout({ {children} -- 2.49.1 From 05a79f344fe7833fe8c2a69d2e69cd9772cb5f55 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 09:50:49 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 2a06a41..771a94c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -15,16 +15,16 @@ import { Mail } from 'lucide-react'; export default function LandingPage() { return (