Skip to content

Commit

Permalink
Merge pull request #16 from abhishekHegde2000/test-branch
Browse files Browse the repository at this point in the history
image props added
  • Loading branch information
abhishekHegde2000 authored Nov 24, 2023
2 parents d33ccb2 + 4db3e3c commit 5246cff
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
15 changes: 12 additions & 3 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}

module.exports = nextConfig
const nextConfig = {
images: {
remotePatterns: [
{
hostname: "img.clerk.com",
},
],
},
};

module.exports = nextConfig;

2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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",
};

Expand Down

0 comments on commit 5246cff

Please sign in to comment.