52 lines
1.7 KiB
Plaintext
52 lines
1.7 KiB
Plaintext
---
|
|||
|
|
import '../styles/globals.css';
|
||
|
|
|
||
|
|
interface Props {
|
||
|
|
title?: string;
|
||
|
|
description?: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
const {
|
||
|
|
title = 'IMPHNEN - Ingin Menjadi Programmer Handal Namun Enggan Ngoding',
|
||
|
|
description = 'Komunitas belajar programming untuk semua level',
|
||
|
|
} = Astro.props;
|
||
|
|
---
|
||
|
|
|
||
|
|
<!doctype html>
|
||
|
|
<html lang="id">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8" />
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
|
<title>{title}</title>
|
||
|
|
<meta name="description" content={description} />
|
||
|
|
|
||
|
|
<!-- Open Graph -->
|
||
|
|
<meta property="og:title" content={title} />
|
||
|
|
<meta property="og:description" content={description} />
|
||
|
|
<meta property="og:url" content="https://imphnen.dev" />
|
||
|
|
<meta property="og:image" content="https://imphnen.dev/imphnen-group-cover.webp" />
|
||
|
|
<meta property="og:image:alt" content="IMPHNEN - Ingin Menjadi Programmer Handal Namun Enggan Ngoding" />
|
||
|
|
<meta property="og:image:width" content="2550" />
|
||
|
|
<meta property="og:image:height" content="945" />
|
||
|
|
|
||
|
|
<!-- Twitter -->
|
||
|
|
<meta name="twitter:card" content="summary_large_image" />
|
||
|
|
<meta name="twitter:title" content={title} />
|
||
|
|
<meta name="twitter:description" content={description} />
|
||
|
|
<meta name="twitter:image" content="https://imphnen.dev/imphnen-group-cover.webp" />
|
||
|
|
|
||
|
|
<!-- Google Fonts: Poppins -->
|
||
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||
|
|
<link
|
||
|
|
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap"
|
||
|
|
rel="stylesheet"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||
|
|
</head>
|
||
|
|
<body class="font-[Poppins,sans-serif] antialiased">
|
||
|
|
<slot />
|
||
|
|
</body>
|
||
|
|
</html>
|