-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add comments and daviddong.me desc
- Loading branch information
1 parent
765e0f3
commit 0babf72
Showing
7 changed files
with
56 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,24 @@ | ||
import Comments from "./assets/comments.gif"; | ||
export default function Page() { | ||
return ( | ||
<> | ||
<h1>Hello</h1> | ||
<h2>Comments</h2> | ||
</> | ||
<div className="flex flex-col"> | ||
<div className="font-medium text-base flex flex-col gap-1"> | ||
<p className="my-0">Comments</p> | ||
<p className="my-0">2023 · Maintainer</p> | ||
</div> | ||
<p>Add comments to your website.</p> | ||
<div className="flex flex-col justify-center items-center"> | ||
<img src={Comments} alt="comments" className="bg-gray-50 border rounded-md my-0" /> | ||
{/* biome-ignore lint/a11y/useKeyWithClickEvents: <explanation> */} | ||
<p | ||
className="my-0 mt-4 text-sm font-medium hover:underline hover:cursor-pointer" | ||
onClick={() => { | ||
window.location.href = "https://github.com/DongHY1/comments"; | ||
}} | ||
> | ||
Comments | ||
</p> | ||
</div> | ||
</div> | ||
); | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,31 @@ | ||
import DavidDongMobile from "./assets/daviddong-mobile.png"; | ||
export default function Page() { | ||
return ( | ||
<> | ||
<h1>Hello</h1> | ||
<h2>Website</h2> | ||
</> | ||
<div className="flex flex-col"> | ||
<div className="font-medium text-base flex flex-col gap-1"> | ||
<p className="my-0">daviddong.me</p> | ||
<p className="my-0">2024 · Maintainer</p> | ||
</div> | ||
<p>My Personal Website.</p> | ||
<div className="flex flex-col justify-center items-center"> | ||
<div className="flex max-w-full w-3/4"> | ||
<img | ||
src={DavidDongMobile} | ||
alt="daviddong-mobile" | ||
className="bg-gray-50 border rounded-md my-0" | ||
/> | ||
</div> | ||
|
||
{/* biome-ignore lint/a11y/useKeyWithClickEvents: <explanation> */} | ||
<p | ||
className="my-0 mt-4 text-sm font-medium hover:underline hover:cursor-pointer" | ||
onClick={() => { | ||
window.location.href = "https://github.com/DongHY1/daviddong.me"; | ||
}} | ||
> | ||
daviddong.me | ||
</p> | ||
</div> | ||
</div> | ||
); | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.