feat: init install mode

This commit is contained in:
swve 2023-07-10 15:05:11 +01:00
parent 687f7b2116
commit 056365dac9
21 changed files with 1230 additions and 6 deletions

View file

@ -0,0 +1,18 @@
import React from 'react'
import InstallClient from './install'
export const metadata = {
title: "Install LearnHouse",
description: "Install Learnhouse on your server",
}
function InstallPage() {
return (
<div className='bg-white h-screen'>
<InstallClient />
</div>
)
}
export default InstallPage