-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathlayout.tsx
More file actions
39 lines (37 loc) · 1.58 KB
/
layout.tsx
File metadata and controls
39 lines (37 loc) · 1.58 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
import React from "react";
import {AppRouterCacheProvider} from "@mui/material-nextjs/v13-appRouter";
import HackHPIWrapper from "../components/Theme/HackHPIWrapper";
import Footer from "../components/Footer/Footer";
import './layout.css'
export default function RootLayout({children,}: { children: React.ReactNode }) {
return (
<html lang="en">
<head>
<meta charSet="UTF-8"/>
<meta name="viewport" content="width=device-width"/>
<link rel="icon" href="/favicon.png"/>
<link rel="apple-touch-icon" href="/favicon.png"/>
<title>
HackHPI 2026 | Agriculture, Climate & Tech
</title>
<meta name="theme-color" content="#13101B"/>
<meta name={"description"}
content={"Explore the future of health at HPI in Potsdam. Join motivated students for two days of innovation, workshops, and collaboration with top-notch sponsors offering support and expertise. Tackle a challenge and dive into the world of health."}/>
</head>
<body>
<AppRouterCacheProvider>
<div style={{position: "relative", minHeight: "100vh"}}>
<div style={{paddingBottom: "17rem"}}>
<HackHPIWrapper>
{children}
</HackHPIWrapper>
</div>
<div style={{position: "absolute", bottom: 0, width: "100%", height: "17rem"}}>
<Footer/>
</div>
</div>
</AppRouterCacheProvider>
</body>
</html>
)
}