diff --git a/README.md b/README.md index f4da3c4..f304db8 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +App to test reviewer bot. + This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). ## Getting Started diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 71b3fbf..7265e94 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,21 +1,28 @@ -import './globals.css' -import { Inter } from 'next/font/google' +import "./globals.css"; +import { Inter } from "next/font/google"; -const inter = Inter({ subsets: ['latin'] }) +const inter = Inter({ subsets: ["latin"] }); export const metadata = { - title: 'Create Next App', - description: 'Generated by create next app', -} + title: "Create Next App", + description: "Generated by create next app", +}; + +const testingFunction = () => { + var a = 0; + var b = 10; + + return a + b; +}; export default function RootLayout({ children, }: { - children: React.ReactNode + children: React.ReactNode; }) { return ( {children} - ) + ); }