feat(create-turbo): apply official-starter transform

This commit is contained in:
Turbobot
2024-02-15 15:47:04 -06:00
committed by Luke Hagar
parent be10b60051
commit d2a4bdeb8e
58 changed files with 6603 additions and 22 deletions

22
apps/docs/app/layout.tsx Normal file
View File

@@ -0,0 +1,22 @@
import "./globals.css";
import type { Metadata } from "next";
import { Inter } from "next/font/google";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Create Turborepo",
description: "Generated by create turbo",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}): JSX.Element {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
);
}