feat: major login and signup changes

This commit is contained in:
swve 2024-06-04 23:12:01 +01:00
parent 5ca1ba75e1
commit 2ae8dbeba5
20 changed files with 217 additions and 141 deletions

View file

@ -0,0 +1,16 @@
import React from 'react'
import HomeClient from './home'
import type { Metadata } from 'next'
export const metadata: Metadata = {
title: 'Home',
}
function Home() {
return (
<div>
<HomeClient/>
</div>
)
}
export default Home