Skip to content

Commit

Permalink
new commit for base nextjs template
Browse files Browse the repository at this point in the history
  • Loading branch information
urbanobaz committed May 29, 2023
1 parent 97c1cfa commit 6252b84
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"extends": "next/core-web-vitals"
"extends": "airbnb"
}
16 changes: 8 additions & 8 deletions app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
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",
};

export default function RootLayout({
children,
}: {
children: React.ReactNode
children: React.ReactNode;
}) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
)
);
}

0 comments on commit 6252b84

Please sign in to comment.