-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.js
46 lines (37 loc) · 1.1 KB
/
page.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import Image from "next/image";
import CLAYZANE from "../images/CLAYZANE.png"
import React from 'react';
export default function Home() {
return (
<main>
<div>
<Image
src={CLAYZANE} // Provide the path to your image
alt="Description of the image"
width={300} // Set the width of the image
height={200}
/>
</div>
<div className="margin-x-4">
<button suppressHydrationWarning={true} className="cybr-btn">
こんにちは<span aria-hidden>_</span>
<span aria-hidden className="cybr-btn__glitch">
こんにちは
</span>
<span aria-hidden className="cybr-btn__tag">
Nexus-12
</span>
</button>
<button suppressHydrationWarning={true} className="cybr-btn">
Info<span aria-hidden>_</span>
<span aria-hidden className="cybr-btn__glitch">
こんにちは
</span>
<span aria-hidden className="cybr-btn__tag">
Nexus-12
</span>
</button>
</div>
</main>
);
}