aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/client/pages
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/pages')
-rw-r--r--src/client/pages/HomePage.tsx8
-rw-r--r--src/client/pages/LoginPage.tsx8
-rw-r--r--src/client/pages/NotFoundPage.tsx11
-rw-r--r--src/client/pages/RegisterPage.tsx8
-rw-r--r--src/client/pages/index.ts4
5 files changed, 39 insertions, 0 deletions
diff --git a/src/client/pages/HomePage.tsx b/src/client/pages/HomePage.tsx
new file mode 100644
index 0000000..1d65484
--- /dev/null
+++ b/src/client/pages/HomePage.tsx
@@ -0,0 +1,8 @@
+export function HomePage() {
+ return (
+ <div>
+ <h1>Kioku</h1>
+ <p>Spaced repetition learning app</p>
+ </div>
+ );
+}
diff --git a/src/client/pages/LoginPage.tsx b/src/client/pages/LoginPage.tsx
new file mode 100644
index 0000000..459e2ce
--- /dev/null
+++ b/src/client/pages/LoginPage.tsx
@@ -0,0 +1,8 @@
+export function LoginPage() {
+ return (
+ <div>
+ <h1>Login</h1>
+ <p>Login page coming soon</p>
+ </div>
+ );
+}
diff --git a/src/client/pages/NotFoundPage.tsx b/src/client/pages/NotFoundPage.tsx
new file mode 100644
index 0000000..289dab5
--- /dev/null
+++ b/src/client/pages/NotFoundPage.tsx
@@ -0,0 +1,11 @@
+import { Link } from "wouter";
+
+export function NotFoundPage() {
+ return (
+ <div>
+ <h1>404 - Not Found</h1>
+ <p>The page you're looking for doesn't exist.</p>
+ <Link href="/">Go to Home</Link>
+ </div>
+ );
+}
diff --git a/src/client/pages/RegisterPage.tsx b/src/client/pages/RegisterPage.tsx
new file mode 100644
index 0000000..a7fbb59
--- /dev/null
+++ b/src/client/pages/RegisterPage.tsx
@@ -0,0 +1,8 @@
+export function RegisterPage() {
+ return (
+ <div>
+ <h1>Register</h1>
+ <p>Registration page coming soon</p>
+ </div>
+ );
+}
diff --git a/src/client/pages/index.ts b/src/client/pages/index.ts
new file mode 100644
index 0000000..99cf046
--- /dev/null
+++ b/src/client/pages/index.ts
@@ -0,0 +1,4 @@
+export { HomePage } from "./HomePage";
+export { LoginPage } from "./LoginPage";
+export { NotFoundPage } from "./NotFoundPage";
+export { RegisterPage } from "./RegisterPage";