I added functionality to the notification button

This commit is contained in:
2026-06-18 16:47:31 +02:00
parent 1e4b8df8dd
commit 6fe41b6c96
4 changed files with 118 additions and 35 deletions
+16
View File
@@ -0,0 +1,16 @@
export const metadata = {
title: 'Next.js',
description: 'Generated by Next.js',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}