Skip to content

Commit 9af3ebf

Browse files
Copilotpranaygp
andcommitted
Remove test files from workbench
Co-authored-by: pranaygp <[email protected]>
1 parent 50c4120 commit 9af3ebf

File tree

2 files changed

+16
-18
lines changed

2 files changed

+16
-18
lines changed

workbench/nextjs-turbopack/app/layout.tsx

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
import type { Metadata } from 'next';
2+
import { Geist, Geist_Mono } from 'next/font/google';
23
import './globals.css';
34

5+
const geistSans = Geist({
6+
variable: '--font-geist-sans',
7+
subsets: ['latin'],
8+
});
9+
10+
const geistMono = Geist_Mono({
11+
variable: '--font-geist-mono',
12+
subsets: ['latin'],
13+
});
14+
415
export const metadata: Metadata = {
516
title: 'Durable Agents',
617
description: 'A durable agent using the new Workflow DevKit',
@@ -13,7 +24,11 @@ export default function RootLayout({
1324
}>) {
1425
return (
1526
<html lang="en">
16-
<body className="antialiased">{children}</body>
27+
<body
28+
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
29+
>
30+
{children}
31+
</body>
1732
</html>
1833
);
1934
}

workbench/nextjs-turbopack/app/test-jsx-transform/page.tsx

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)