Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
564 B

2 years ago
---
import "../styles/global.css";
2 years ago
import Navigation from '../components/Navigation.astro';
export interface Props {
title: string;
}
const { title } = Astro.props;
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="generator" content={Astro.generator} />
<title>{title}</title>
<slot name="after-header" />
2 years ago
</head>
<body>
<Navigation />
<slot />
<slot name="after-footer"/>
2 years ago
</body>
</html>