Skip to content

Commit

Permalink
v1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
NxClayzane committed Oct 19, 2023
1 parent 55f4846 commit e66e07d
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 2 deletions.
20 changes: 20 additions & 0 deletions app/about/page.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import React from "react";
import Image from "next/image";


function About() {
return (
<div className="bg-white flex align-top border-l pt-8 pr-8 pl-8 pb-8 curv">
<h1>About me</h1>

</div>






);
}

export default About;
33 changes: 31 additions & 2 deletions app/page.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
import Image from "next/image";
import CLAYZANE from "../images/CLAYZANE.png"
import React from 'react';

export default function Home() {
return (
<main>
<div className="box">
<button className="cybr-btn">
<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">
こんにちは
Expand All @@ -11,6 +23,23 @@ export default function Home() {
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>
);
Expand Down
Binary file added images/CLAYZANE.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e66e07d

Please sign in to comment.