class-profile-2023/components/GooseAndMoon.tsx

13 lines
461 B
TypeScript

import Image from "next/image";
import styles from "./GooseAndMoon.module.css";
import { basePath } from "@/utils/getBasePath";
export function GooseAndMoon() {
return (
<div className={styles.group}>
<Image className={styles.moon} src={basePath + "/images/big-moon.svg"} alt="" width={500} height={500}></Image>
<Image className={styles.goose} src={basePath + "/images/goose1.svg"} alt="" width={320} height={320}></Image>
</div>
);
}