feat: use client component layout

This commit is contained in:
swve 2023-04-22 11:39:08 +02:00
parent c9ad26782f
commit e9d127bf89
2 changed files with 1 additions and 9 deletions

View file

@ -1,3 +1,4 @@
"use client";
import "@styles/globals.css";
import { Menu } from "@components/UI/Elements/Menu";
import AuthProvider from "@components/Security/AuthProvider";

View file

@ -1,9 +0,0 @@
export default function Head() {
return (
<>
<title>LearnHouse</title>
<meta content="width=device-width, initial-scale=1" name="viewport" />
<link rel="icon" href="/favicon.ico" />
</>
)
}