From 9b31765dd85f5a21f7b8254771e60b1816c0050b Mon Sep 17 00:00:00 2001 From: Noodles Date: Thu, 9 Oct 2025 20:37:03 -0500 Subject: [PATCH] Created the scaffolding for the landing page Created the route src/app/landingpage --- src/app/landingpage/page.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/app/landingpage/page.tsx diff --git a/src/app/landingpage/page.tsx b/src/app/landingpage/page.tsx new file mode 100644 index 0000000..a0f180e --- /dev/null +++ b/src/app/landingpage/page.tsx @@ -0,0 +1,9 @@ +const landingPage = () => { + return( +
+

Welcome to the landing page!

+
+ ) +} + +export default landingPage \ No newline at end of file