site/src/app/style_test/page.tsx
2025-01-06 16:35:53 -08:00

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>
);
}