mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-21 06:54:08 -07:00
33 lines
795 B
Text
33 lines
795 B
Text
---
|
|
import Layout from '../layouts/default.astro'
|
|
|
|
// Component Script:
|
|
// You can write any JavaScript/TypeScript that you'd like here.
|
|
// It will run during the build, but never in the browser.
|
|
// All variables are available to use in the HTML template below.
|
|
const title = 'Does It ARM?'
|
|
|
|
const description = 'Does It ARM?'
|
|
|
|
|
|
// Full Astro Component Syntax:
|
|
// https://docs.astro.build/core-concepts/astro-components/
|
|
---
|
|
<Layout
|
|
headTitle={ title }
|
|
headDescription={ description }
|
|
>
|
|
Works!
|
|
|
|
<!--
|
|
|
|
You can also use imported framework components directly in your markup!
|
|
|
|
Note: by default, these components are NOT interactive on the client.
|
|
The `:visible` directive tells Astro to make it interactive.
|
|
|
|
See https://docs.astro.build/core-concepts/component-hydration/
|
|
|
|
-->
|
|
|
|
</Layout>
|