feat: init element ui design

This commit is contained in:
swve 2023-01-13 18:45:56 +01:00
parent af8542069f
commit 26e077eed4
4 changed files with 124 additions and 18 deletions

View file

@ -1,4 +1,4 @@
"use client";
import React from "react";
import Head from "next/head";
import styled from "styled-components";
@ -14,8 +14,6 @@ const Layout = (props: any) => {
};
return (
<html>
<body>
<AuthProvider>
<ProjectPhaseLabel>🚧 Dev Phase</ProjectPhaseLabel>
<Menu orgslug={props.orgslug}></Menu>
@ -33,8 +31,6 @@ const Layout = (props: any) => {
<p>LearnHouse © 2021 - {new Date().getFullYear()} - All rights reserved</p>
</Footer>
</AuthProvider>
</body>
</html>
);
};