13 lines
189 B
TypeScript
13 lines
189 B
TypeScript
import type { Metadata } from 'next'
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'key',
|
|
description: '...',
|
|
}
|
|
|
|
const AboutPage = () => {
|
|
return <>ABOUT</>
|
|
}
|
|
|
|
export default AboutPage
|