We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f0c648 commit 9591371Copy full SHA for 9591371
1 file changed
apps/app/src/app/layout.tsx
@@ -1,9 +1,11 @@
1
import type { Metadata } from "next";
2
-import { GeistSans } from "geist/font/sans";
3
-import { GeistMono } from "geist/font/mono";
+import { GeistSans as GeistSansFont } from "geist/font/sans";
+import { GeistMono as GeistMonoFont } from "geist/font/mono";
4
import { Toaster } from "sonner";
5
import "./globals.css";
6
7
+const GeistSans = GeistSansFont({ variable: "--font-geist-sans" });
8
+const GeistMono = GeistMonoFont({ variable: "--font-geist-mono" });
9
export const metadata: Metadata = {
10
title: "Automaker - Autonomous AI Development Studio",
11
description: "Build software autonomously with intelligent orchestration",
0 commit comments