File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ import * as React from "react"
2
2
3
3
import { Link } from "next-view-transitions"
4
4
5
- import { generateMetadata } from "@/utils/metadata"
5
+ import { getMetadata } from "@/utils/metadata"
6
6
7
- export const metadata = generateMetadata ( {
7
+ export const metadata = getMetadata ( {
8
8
path : "/" ,
9
9
title : "Not Found | Next.js App" ,
10
10
description : "Page not found on Next.js Typescript Starter" ,
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ import * as React from "react"
3
3
import * as motion from "motion/react-client"
4
4
5
5
import { BASE_TRANSITION } from "@/utils/animation"
6
- import { generateMetadata } from "@/utils/metadata"
6
+ import { getMetadata } from "@/utils/metadata"
7
7
8
- export const metadata = generateMetadata ( {
8
+ export const metadata = getMetadata ( {
9
9
path : "/" ,
10
10
title : "Next.js App" ,
11
11
description : "Next.js Typescript Starter" ,
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ interface MetadataArgs {
9
9
image ?: string
10
10
}
11
11
12
- export const generateMetadata = ( {
12
+ export const getMetadata = ( {
13
13
path,
14
14
title,
15
15
description,
You can’t perform that action at this time.
0 commit comments