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} 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 (