From 6cdcfb5763fbe2bdd39005d2c22a25b989e39824 Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Mon, 9 Dec 2024 11:33:10 +0300 Subject: [PATCH] beautify mobile version --- app/layout.tsx | 2 +- app/page.tsx | 5 ++++- eslint.config.mjs | 1 + 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/app/layout.tsx b/app/layout.tsx index 1e87a09..9c11945 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -19,7 +19,7 @@ export default async function RootLayout({ children }: { readonly children: Reac diff --git a/app/page.tsx b/app/page.tsx index 10f9fdc..3be09a6 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -24,7 +24,10 @@ export async function generateMetadata({ params }: PageProps): Promise export default function HomePage() { return (
- +
diff --git a/eslint.config.mjs b/eslint.config.mjs index fe4bbb3..e4785b1 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -41,6 +41,7 @@ export default [ }, { usePrettierrc: false }, ], + 'react/forbid-component-props': 0, }, }, ];