Fixed weird favicon caching situation

This commit is contained in:
2025-06-13 15:25:33 -05:00
parent f456e05a05
commit 55fdeb23b3
28 changed files with 126 additions and 47 deletions

View File

@ -0,0 +1,16 @@
import type { Metadata } from 'next';
export const generateMetadata = (): Metadata => {
return {
title: 'Profile'
};
};
const ProfileLayout = ({ children }: Readonly<{ children: React.ReactNode }>) => {
return (
<div>
{children}
</div>
);
};
export default ProfileLayout;