mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
45 lines
1.1 KiB
Text
45 lines
1.1 KiB
Text
---
|
|
import Layout from '../layouts/default.astro'
|
|
|
|
import AppTestPage from '~/pages/apple-silicon-app-test.vue'
|
|
|
|
// 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.
|
|
|
|
|
|
// Full Astro Component Syntax:
|
|
// https://docs.astro.build/core-concepts/astro-components/
|
|
|
|
---
|
|
<Layout
|
|
headOptions={ {
|
|
title: `Apple Silicon Compatibility Test Online - Does It ARM`,
|
|
description: `Check for Apple Silicon compatibility for any of your apps instantly before you buy an M1 Pro or M1 Max Mac. `,
|
|
// meta,
|
|
// link,
|
|
// structuredData: this.structuredData,
|
|
|
|
// domain,
|
|
pathname: '/',
|
|
} }
|
|
>
|
|
|
|
<AppTestPage
|
|
config={ global.$config }
|
|
client:load
|
|
/>
|
|
|
|
<!--
|
|
|
|
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>
|