Add Footer component to layout and remove StyleGuidePage
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 2m19s
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 2m19s
This commit is contained in:
@@ -4,6 +4,7 @@ import { Orbitron, Rajdhani } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import SessionProvider from "@/components/layout/SessionProvider";
|
||||
import { ThemeProvider } from "@/contexts/ThemeContext";
|
||||
import Footer from "@/components/layout/Footer";
|
||||
|
||||
const orbitron = Orbitron({
|
||||
subsets: ["latin"],
|
||||
@@ -34,7 +35,10 @@ export default function RootLayout({
|
||||
>
|
||||
<body className="antialiased">
|
||||
<ThemeProvider>
|
||||
<SessionProvider>{children}</SessionProvider>
|
||||
<SessionProvider>
|
||||
{children}
|
||||
<Footer />
|
||||
</SessionProvider>
|
||||
</ThemeProvider>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user