aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2024-07-02 13:21:36 -0700
committerPinapelz <yukais@pinapelz.com>2024-07-02 13:21:36 -0700
commite6deb012a2f0a6d3195ab167238463851db018a1 (patch)
tree516455bd86c6123035aaf5cd33620f7644b957d3
parent618e3d06eae21a79a25a255a8bf4b4caba0bd90e (diff)
fix about page url and add stub about page
-rw-r--r--src/app/about/page.tsx14
-rw-r--r--src/app/page.tsx2
2 files changed, 15 insertions, 1 deletions
diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
new file mode 100644
index 0000000..4e87477
--- /dev/null
+++ b/src/app/about/page.tsx
@@ -0,0 +1,14 @@
+import React from 'react';
+
+
+const AboutPage: React.FC = () => {
+ return (
+ <div>
+ <h1>About Page</h1>
+ <p>Nothing here right now. Will be updated soon...</p>
+ <a href="/">Back to player</a>
+ </div>
+ );
+};
+
+export default AboutPage; \ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 106193d..0a1a84d 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -444,7 +444,7 @@ function KaraokePage() {
Please select the video and lrc (lyrics) file <br />
(Drag and Drop them here, or use the menus below!)
<br />
- <StyledLink href="/about>">About</StyledLink>
+ <StyledLink href="/about">About</StyledLink>
</p>
</div>
)}
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage