-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.js
26 lines (25 loc) · 959 Bytes
/
layout.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { Inter } from "next/font/google";
import "./globals.css";
import Navbar from "@/Components/Navbar";
import Footer from "@/Components/Footer";
import SessionWrapper from "@/Components/SessionWrapper";
const inter = Inter({ subsets: ["latin"] });
export const metadata = {
title: "Get Me A Chai- Fund your projects with tea",
description: "This website is a crowdfunding platform for creators.",
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body className="bg-neutral-950 bg-[radial-gradient(ellipse_80%_80%_at_50%_-20%,rgba(120,119,198,0.3),rgba(255,255,255,0))] text-white">
<SessionWrapper>
<Navbar/>
<div className="min-h-screen bg-neutral-950 bg-[radial-gradient(ellipse_80%_80%_at_50%_-20%,rgba(120,119,198,0.3),rgba(255,255,255,0))] text-white">
{children}
</div>
<Footer/>
</SessionWrapper>
</body>
</html>
);
}