mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-11 18:45:41 +00:00
18 lines
416 B
TypeScript
18 lines
416 B
TypeScript
import { MetadataRoute } from 'next'
|
|
|
|
export default function sitemap(): MetadataRoute.Sitemap {
|
|
return [
|
|
{
|
|
url: 'https://acme.com',
|
|
lastModified: new Date(),
|
|
},
|
|
{
|
|
url: 'https://acme.com/about',
|
|
lastModified: new Date(),
|
|
},
|
|
{
|
|
url: 'https://acme.com/blog',
|
|
lastModified: new Date(),
|
|
},
|
|
]
|
|
} |