mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Add Astro index and template
This commit is contained in:
parent
a8cf3ba592
commit
1c06b6285e
2 changed files with 63 additions and 0 deletions
30
src/layouts/default.astro
Normal file
30
src/layouts/default.astro
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
---
|
||||
import '~/assets/css/tailwind.css'
|
||||
|
||||
import VueBaseLayout from '../../layouts/base.vue'
|
||||
|
||||
const {
|
||||
headTitle,
|
||||
headDescription
|
||||
} = Astro.props
|
||||
|
||||
---
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>{ headTitle }</title>
|
||||
|
||||
<meta name="Description" content={ headDescription }>
|
||||
|
||||
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
||||
|
||||
<link rel="preconnect" href="https://www.googletagmanager.com" crossorigin>
|
||||
</head>
|
||||
<body>
|
||||
<VueBaseLayout>
|
||||
<slot />
|
||||
</VueBaseLayout>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue