From 4db3e3c32d413cfdeda25dfcc3615a4c3a1a1675 Mon Sep 17 00:00:00 2001 From: Abhishek Hegde Date: Fri, 24 Nov 2023 21:36:53 +0530 Subject: [PATCH] image props added --- next.config.js | 15 ++++++++++++--- src/app/layout.tsx | 2 +- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/next.config.js b/next.config.js index 767719f..55b1e30 100644 --- a/next.config.js +++ b/next.config.js @@ -1,4 +1,13 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {} - -module.exports = nextConfig +const nextConfig = { + images: { + remotePatterns: [ + { + hostname: "img.clerk.com", + }, + ], + }, + }; + + module.exports = nextConfig; + \ No newline at end of file diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0bbbc77..b534e29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,7 +7,7 @@ import "./globals.css"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Note Taker - AI", + title: "FlowBrain", description: "The intelligent note-taking app", };