File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ export async function generateMetadata(
3333 }
3434 // TODO: OG image generation
3535 return {
36- title : `${ event . title } | Events | ${ parent . title } ` ,
36+ title : `${ event . title } | ${ parent . title } ` ,
3737 description :
3838 event . description != null && event . description . trim ( ) . length > 0
3939 ? `${ event . description } : ${ parent . description } `
Original file line number Diff line number Diff line change 11import { Header } from "@/components/Header" ;
22import { ALL_EVENTS } from "@/lib/events" ;
33import { formatDateDisplay } from "@/lib/utilities" ;
4+ import { Metadata } from "next" ;
45import Image from "next/image" ;
56import Link from "next/link" ;
67
8+ export const metadata : Metadata = {
9+ title : "Events | FOSS Cell TKMCE" ,
10+ } ;
11+
712export default function Page ( ) {
813 return (
914 < div >
You can’t perform that action at this time.
0 commit comments