-
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.
- Loading branch information
Luna
committed
Feb 18, 2024
1 parent
e792c3c
commit 27e3867
Showing
3 changed files
with
40 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
export default function About() { | ||
return ( | ||
<> | ||
<div className="w-screen h-[calc(100vh-74px)] bg-background flex justify-center"> | ||
<div className="py-4 max-w-lg"> | ||
<h1 className="text-2xl underline">about web-expl</h1> | ||
<p className="text-primary"> | ||
web-expl visualizes the internet in a node-based system in | ||
3-dimensional space. | ||
<br /> | ||
The visualizer is based on WebGL using ThreeJS, including responsive | ||
canvas scaling to run as smoothly as possible across all devices. | ||
<br /> | ||
<br /> | ||
Content is fetched using web-scraping. The host of this website is | ||
not responsible for the content of the scraped websites. | ||
</p> | ||
<br /> | ||
<h1 className="text-2xl underline">goals</h1> | ||
<p className="text-primary"> | ||
While this project is still a work-in-progress, the overall goal is | ||
to develop something similar to a search engine, but in 3D space. | ||
<br /> | ||
<br /> | ||
Planned and potential features include: | ||
<ul className="list-disc pl-8"> | ||
<li>Loading indicator</li> | ||
<li>Overview of all displayed nodes</li> | ||
<li>Clickable nodes to preview websites</li> | ||
</ul> | ||
</p> | ||
<br /> | ||
<center>Developed with 💖 using NextJS, TailwindCSS and ThreeJS</center> | ||
</div> | ||
</div> | ||
</> | ||
); | ||
} |
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