File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,8 @@ const inter = Inter({ subsets: ["latin"] });
1515
1616export const metadata : Metadata = {
1717 title : "Chords" ,
18- description : "Web Serial based Biopotential Signal recorder applicaion." ,
18+ description : "Web Serial based Biopotential Signal recorder application." ,
19+ manifest : "/Chords-Web/manifest.json" , // ✅ Add this line to register the manifest
1920} ;
2021
2122const lobsterTwo = Lobster_Two ( {
@@ -43,6 +44,9 @@ export default function RootLayout({
4344} > ) {
4445 return (
4546 < html lang = "en" suppressHydrationWarning >
47+ < head >
48+ < link rel = "manifest" href = "/Chords-Web/manifest.json" /> { /* ✅ Added manifest */ }
49+ </ head >
4650 < body
4751 className = { cn (
4852 lobsterTwo . variable ,
@@ -63,4 +67,4 @@ export default function RootLayout({
6367 </ body >
6468 </ html >
6569 ) ;
66- }
70+ }
You can’t perform that action at this time.
0 commit comments