Skip to content

Commit f492cc5

Browse files
committed
Add webinars layout
1 parent 6a08504 commit f492cc5

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

src/layouts/Webinars.astro

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
const { frontmatter } = Astro.props
3+
---
4+
5+
<html lang="en">
6+
<head>
7+
<meta charset="utf-8" />
8+
<meta name="viewport" content="width=device-width" />
9+
<meta name="generator" content={Astro.generator} />
10+
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
11+
<style>
12+
html,
13+
body {
14+
font-family: system-ui;
15+
margin: 0;
16+
}
17+
body {
18+
padding: 2rem;
19+
}
20+
</style>
21+
</head>
22+
<body>
23+
<main class="flex flex-col gap-2">
24+
<slot />
25+
</main>
26+
</body>
27+
</html>

0 commit comments

Comments
 (0)