From e6deb012a2f0a6d3195ab167238463851db018a1 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Tue, 2 Jul 2024 13:21:36 -0700 Subject: fix about page url and add stub about page --- src/app/about/page.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/app/about/page.tsx (limited to 'src/app/about') 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 ( +
+

About Page

+

Nothing here right now. Will be updated soon...

+ Back to player +
+ ); +}; + +export default AboutPage; \ No newline at end of file -- cgit v1.2.3