-
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 ai, data-visualization, tme (#58)
* feat: change picture name * feat: add llm route * chore: lint * chore: remove music route * chore: lint * fix: remove build error use client info * feat: add placeholder project index page * fix: typo * feat: add ai project desc * chore: lint * fix: img alt * chore: lint * feat: change llm name to ai * fix: typo * feat: add data-visualization project desc * chore: lint * feat: add map data visualization * chore: lint * feat: remove dot background * feat: add tme project * chore: lint
- Loading branch information
1 parent
d64052f
commit 394bd2e
Showing
34 changed files
with
203 additions
and
91 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
File renamed without changes.
File renamed without changes.
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
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
2 changes: 1 addition & 1 deletion
2
src/pages/music/components/MusicCover.jsx → ...ages/list/components/video/VideoCover.jsx
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import VideoCover from "./VideoCover"; | ||
import VideoList from "./VideoList"; | ||
|
||
export { VideoCover, VideoList }; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export default function Layout({ children }) { | ||
return <article className="prose p-12">{children}</article>; | ||
} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,62 @@ | ||
import ChatPageDialog from "./assets/chat-page-dialog.png"; | ||
import ChatPageImage from "./assets/chat-page-img.png"; | ||
import ChatPageMain from "./assets/chat-page-main.png"; | ||
import LiteratureSearch from "./assets/literature-search.png"; | ||
import Plugin from "./assets/plugin.png"; | ||
export default function Page() { | ||
return ( | ||
<div className="flex flex-col"> | ||
<div className="font-medium text-base flex flex-col gap-1"> | ||
<p className="my-0">AI Diagnosis Assistant</p> | ||
<p className="my-0">2023 · Front-End Developer · Peking University Institute</p> | ||
</div> | ||
<p>Developed a chat application in medical field.</p> | ||
<div className="flex flex-col space-y-12"> | ||
<div className="flex flex-col justify-center items-center"> | ||
<div className="space-y-4"> | ||
<img | ||
src={ChatPageMain} | ||
alt="chat-page-main" | ||
className="bg-gray-50 border rounded-md my-0" | ||
/> | ||
<img | ||
src={ChatPageDialog} | ||
alt="chat-page-dialog" | ||
className="bg-gray-50 border rounded-md my-0" | ||
/> | ||
</div> | ||
|
||
<p className="my-0 mt-4 text-sm font-medium">Chat Page</p> | ||
<p className="my-0 text-neutral-400 text-sm"> | ||
You can view previous conversations or start a new one. | ||
</p> | ||
</div> | ||
<div className="flex flex-col justify-center items-center"> | ||
<img src={Plugin} alt="plugin" className="bg-gray-50 border rounded-md my-0" /> | ||
<p className="my-0 mt-4 text-sm font-medium">Plugin System</p> | ||
<p className="my-0 text-neutral-400 text-sm">Different roles have different plugins.</p> | ||
</div> | ||
|
||
<div className="flex flex-col justify-center items-center"> | ||
<img | ||
src={ChatPageImage} | ||
alt="chat-page-image" | ||
className="bg-gray-50 border rounded-md my-0" | ||
/> | ||
<p className="my-0 mt-4 text-sm font-medium">Multimodal</p> | ||
<p className="my-0 text-neutral-400 text-sm">Model can understand images.</p> | ||
</div> | ||
|
||
<div className="flex flex-col justify-center items-center"> | ||
<img | ||
src={LiteratureSearch} | ||
alt="literature-search" | ||
className="bg-gray-50 border rounded-md my-0" | ||
/> | ||
<p className="my-0 mt-4 text-sm font-medium">Literature Search</p> | ||
<p className="my-0 text-neutral-400 text-sm">Cite literature in conversations.</p> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
export default function Page() { | ||
return ( | ||
<> | ||
<h1>Hello</h1> | ||
<h2>Comments</h2> | ||
</> | ||
); | ||
} |
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 |
---|---|---|
@@ -0,0 +1,63 @@ | ||
import { Separator } from "@/components/ui/separator"; | ||
import Baked from "./assets/baked.jpg"; | ||
import EchartMap from "./assets/map.gif"; | ||
import Model from "./assets/model.png"; | ||
import Texture from "./assets/texture.png"; | ||
export default function Page() { | ||
return ( | ||
<div className="flex flex-col"> | ||
<div className="font-medium text-base flex flex-col gap-1"> | ||
<p className="my-0">Data Visualization</p> | ||
<p className="my-0">2023-2024 · Front-End Developer · Peking University Institute</p> | ||
</div> | ||
<p>A series of data visualization projects.</p> | ||
<div className="flex flex-col space-y-12"> | ||
<div className="flex flex-col justify-center items-center"> | ||
<iframe | ||
scrolling="no" | ||
src="https://desktop.daviddong.me" | ||
title="desktop" | ||
className="w-full h-72 border rounded-md overflow-hidden" | ||
/> | ||
{/* 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://desktop.daviddong.me"; | ||
}} | ||
> | ||
My Desktop Website | ||
</p> | ||
</div> | ||
<div className="flex flex-col justify-center items-center"> | ||
<img src={Model} alt="model" className="bg-gray-50 border rounded-md my-0" /> | ||
<p className="my-0 mt-4 text-sm font-medium">Model</p> | ||
<p className="my-0 text-neutral-400 text-sm">Create models in Blender.</p> | ||
</div> | ||
<div className="flex flex-col justify-center items-center"> | ||
<img src={Baked} alt="baked" className="bg-gray-50 border rounded-md my-0" /> | ||
<p className="my-0 mt-4 text-sm font-medium">Baked</p> | ||
<p className="my-0 text-neutral-400 text-sm"> | ||
Baking in Blender to generate textures and improve loading performance. | ||
</p> | ||
</div> | ||
|
||
<div className="flex flex-col justify-center items-center"> | ||
<img src={Texture} alt="texture" className="bg-gray-50 border rounded-md my-0" /> | ||
|
||
<p className="my-0 mt-4 text-sm font-medium">Texture & Shader</p> | ||
<p className="my-0 text-neutral-400 text-sm"> | ||
Apply noise texture in the shader to generate a smoke effect. | ||
</p> | ||
</div> | ||
<Separator /> | ||
|
||
<div className="flex flex-col justify-center items-center"> | ||
<img src={EchartMap} alt="map" className="bg-gray-50 border rounded-md my-0" /> | ||
<p className="my-0 mt-4 text-sm font-medium">Map</p> | ||
<p className="my-0 text-neutral-400 text-sm">Implement map interaction using ECharts</p> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import game from "./assets/game.gif"; | ||
import rank from "./assets/rank.gif"; | ||
export default function Page() { | ||
return ( | ||
<div className="flex flex-col"> | ||
<div className="font-medium text-base flex flex-col gap-1"> | ||
<p className="my-0">Hybrid Mobile App</p> | ||
<p className="my-0">2022 · Intern Software Developer · Tencent Music</p> | ||
</div> | ||
<p>Hybrid app development for QQ Music and WeSing.</p> | ||
<div className="flex flex-col space-y-12"> | ||
<div className="flex flex-col justify-center items-center"> | ||
<img src={game} alt="game" className="bg-gray-50 border rounded-md my-0" /> | ||
<p className="my-0 mt-4 text-sm font-medium">Mini game</p> | ||
<p className="my-0 text-neutral-400 text-sm">Mini-games in the live streaming room</p> | ||
</div> | ||
<div className="flex flex-col justify-center items-center"> | ||
<img src={rank} alt="rank" className="bg-gray-50 border rounded-md my-0" /> | ||
<p className="my-0 mt-4 text-sm font-medium">Rank List</p> | ||
<p className="my-0 text-neutral-400 text-sm"> | ||
View the ranking of users in the live streaming room | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
export default function Page() { | ||
return ( | ||
<> | ||
<h1>Hello</h1> | ||
<h2>Website</h2> | ||
</> | ||
); | ||
} |
Oops, something went wrong.