konulu-konum/src/layouts/Layout.astro

29 lines
899 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://konulu-konum.vercel.app' />
<meta
property='og:image'
content='https://konulu-konum.vercel.app/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>