Spaces:
Runtime error
Runtime error
File size: 545 Bytes
38c5e89 945c6bb 38c5e89 945c6bb 38c5e89 945c6bb 38c5e89 945c6bb 38c5e89 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
import Head from "next/head";
import Container from "@mui/material/Container";
import Footer from "@/components/footer";
import Title from "@/components/title";
export default function Home() {
return (
<>
<Head>
<title>nextjs-docker-starter</title>
<link rel="icon" href="/favicon.ico" />
<meta name="description" content="Next.js in Docker on π€ Spaces" />
</Head>
<Container component="main" sx={{ minHeight: "90vh" }}>
<Title />
</Container>
<Footer />
</>
);
}
|