rsnext/test/integration/telemetry/pages/about.js
Keen Yee Liau 53628fba69
Create TelemetryPlugin for collecting feature usage metrics (#29145)
This commit creates a new Webpack `TelemetryPlugin` to gather information
about usage of certain features, for example `next/image` and `next/script`.
2021-10-05 14:31:48 -05:00

14 lines
275 B
JavaScript

import Image from 'next/image'
import profilePic from '../public/small.jpg'
function About() {
return (
<>
<h1>My Homepage</h1>
<Image src={profilePic} alt="Picture of the author" />
<p>Welcome to my homepage!</p>
</>
)
}
export default About