From 1ae99c929f064d9214a1d2656beefd0d1af20d9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cjoanmiralles=E2=80=9D?= <“jmirallespaez@gmail.com”> Date: Fri, 19 May 2023 13:03:10 +0200 Subject: [PATCH 1/3] dummy text --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index f4da3c4..88312d0 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 From d9ad49ed3919331288c397bacf6cd71b78cd40e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cjoanmiralles=E2=80=9D?= <“jmirallespaez@gmail.com”> Date: Fri, 19 May 2023 13:07:33 +0200 Subject: [PATCH 2/3] useless func --- src/app/layout.tsx | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) 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} - ) + ); } From 929b2b2346ec24ddbccad04591159996fe17717e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cjoanmiralles=E2=80=9D?= <“jmirallespaez@gmail.com”> Date: Sat, 20 May 2023 11:05:16 +0200 Subject: [PATCH 3/3] testing --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 88312d0..f304db8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -App to test reviewer bot +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).