mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Import App Scanner page into Astro
This commit is contained in:
parent
ae84c7d663
commit
927791eb73
1 changed files with 43 additions and 0 deletions
43
src/pages/apple-silicon-app-test.astro
Normal file
43
src/pages/apple-silicon-app-test.astro
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
---
|
||||
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
|
||||
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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue