From b7825ba229b175523abea0718fd346c1d8567dba Mon Sep 17 00:00:00 2001
From: Riley Abrahamson <32375220+RileyAbr@users.noreply.github.com>
Date: Thu, 7 Nov 2024 15:25:34 -0800
Subject: [PATCH] Add Install page
---
wally-registry-frontend/src/app/install/page.tsx | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/wally-registry-frontend/src/app/install/page.tsx b/wally-registry-frontend/src/app/install/page.tsx
index 86849f8..7672a75 100644
--- a/wally-registry-frontend/src/app/install/page.tsx
+++ b/wally-registry-frontend/src/app/install/page.tsx
@@ -1,5 +1,15 @@
+"use client"
+
+import ContentSection from "@/components/ContentSection"
+import { MarkdownSection } from "@/components/MarkdownSection"
import Install from "@/markdown/Install.mdx"
export default function InstallPage() {
- return
+ return (
+
+
+
+
+
+ )
}