Skip to content

Commit 8c8385c

Browse files
committed
Update layout
1 parent e1e3640 commit 8c8385c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/app/layout.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ const inter = Inter({ subsets: ["latin"] });
1515

1616
export 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

2122
const 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+
}

0 commit comments

Comments
 (0)