konulu-konum/src/layouts/Layout.astro
log101 9c6a574708
All checks were successful
/ Build (push) Successful in 34s
fix: meta info
2024-07-29 23:01:27 +03:00

29 lines
897 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
import "leaflet/dist/leaflet.css"
import "toastify-js/src/toastify.css"
---
<!doctype html>
<html lang='en'>
<head>
<meta charset='UTF-8' />
<meta name='description' content='Astro description' />
<meta name='viewport' content='width=device-width' />
<link rel='icon' type='image/jpg' href='/konulu-konum-logo.jpg' />
<meta property='og:title' content='Konulu Konum' />
<meta property='og:description' content='Sevdiklerinizi şaşırtın!' />
<meta property='og:url' content='https://konulukonum.log101.dev' />
<meta
property='og:image'
content='https://konulukonum.log101.dev/konulu-konum-logo.jpg'
/>
<meta name='twitter:card' content='summary' />
<meta name='generator' content={Astro.generator} />
<title>Konulu Konum</title>
</head>
<body class='container my-8'>
<slot />
</body>
</html>
<style is:global></style>