Update src/app/layout.tsx

This commit is contained in:
2026-03-07 09:50:49 +00:00
parent 0976671e62
commit 39d95d54bd

View File

@@ -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({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
className={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}