Skip to content

Commit

Permalink
Add Install page
Browse files Browse the repository at this point in the history
  • Loading branch information
RileyAbr committed Nov 7, 2024
1 parent 1bde714 commit b7825ba
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion wally-registry-frontend/src/app/install/page.tsx
Original file line number Diff line number Diff line change
@@ -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 <Install />
return (
<ContentSection>
<MarkdownSection>
<Install />
</MarkdownSection>
</ContentSection>
)
}

0 comments on commit b7825ba

Please sign in to comment.