10 lines
249 B
TypeScript
10 lines
249 B
TypeScript
import Image from "next/image";
|
|
|
|
export default function Page() {
|
|
return (
|
|
<div className="vga-font">
|
|
<p>Style Testing</p>
|
|
<Image src="/cat.jpg" width={500} height={500} alt="cat"></Image>
|
|
</div>
|
|
);
|
|
}
|