1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-09-18 15:05:32 -04:00

consistent arrow functions

This commit is contained in:
2025-03-12 18:10:11 -04:00
parent 6a57fde2f1
commit e61ca889a7
39 changed files with 121 additions and 126 deletions

View File

@@ -20,7 +20,7 @@ export const metadata: Metadata = {
},
};
export default function Page() {
const Page = () => {
return (
<>
<PageTitle canonical="/birthday">1996.mov</PageTitle>
@@ -28,4 +28,6 @@ export default function Page() {
<Video src={["/static/birthday/birthday.webm", "/static/birthday/birthday.mp4"]} poster={thumbnail.src} />
</>
);
}
};
export default Page;