diff --git a/.prettierignore b/.prettierignore index 653334d8..107b60d9 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,4 +1,5 @@ .github/ *.config.js .prettierrc.js -*.md \ No newline at end of file +*.md +settings.json \ No newline at end of file diff --git a/app/layout.tsx b/app/layout.tsx index e8c67526..1f0a3bfb 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,28 +1,30 @@ -import { GeistSans } from 'geist/font/sans' -import './globals.css' +import { GeistSans } from 'geist/font/sans'; +import './globals.css'; +import Nav from '@/components/Nav/Nav'; const defaultUrl = process.env.VERCEL_URL ? `https://${process.env.VERCEL_URL}` - : 'http://localhost:3000' + : 'http://localhost:3000'; export const metadata = { metadataBase: new URL(defaultUrl), title: 'Next.js and Appwrite', - description: 'The fastest way to build apps with Next.js and Appwrite' -} + description: 'The fastest way to build apps with Next.js and Appwrite', +}; export default function RootLayout({ children, }: { - children: React.ReactNode + children: React.ReactNode; }) { return ( -
+