diff --git a/app/[...all]/page.tsx b/app/[...all]/page.tsx index 76c6ba9..044dbe8 100644 --- a/app/[...all]/page.tsx +++ b/app/[...all]/page.tsx @@ -5,9 +5,9 @@ const App = dynamic(() => import('../../components/AppShell'), { }); export function generateStaticParams() { - return [{ all: ['tabs', 'feed'] }] + return [{ all: ['tabs', 'feed'] }]; } export default function Page() { return ; -} \ No newline at end of file +} diff --git a/app/layout.tsx b/app/layout.tsx index 8b4a936..ef93351 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,4 +1,4 @@ -import type { Metadata, Viewport } from "next"; +import type { Metadata, Viewport } from 'next'; import Script from 'next/script'; import 'tailwindcss/tailwind.css'; @@ -22,15 +22,15 @@ import '../styles/global.css'; import '../styles/variables.css'; export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: 'Create Next App', + description: 'Generated by create next app', }; export const viewport: Viewport = { initialScale: 1, width: 'device-width', - viewportFit: 'cover' -} + viewportFit: 'cover', +}; export default function RootLayout({ children, @@ -39,14 +39,9 @@ export default function RootLayout({ }>) { return ( - - {children} +