From ff81eb963ad722afff48c644d6c50102bb888777 Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Tue, 2 Feb 2021 23:18:59 -0600 Subject: [PATCH] Make faqs section --- pages/apple-silicon-compatibility.vue | 214 ++++++++++++++------------ 1 file changed, 114 insertions(+), 100 deletions(-) diff --git a/pages/apple-silicon-compatibility.vue b/pages/apple-silicon-compatibility.vue index ca45f0f..b0c14a6 100644 --- a/pages/apple-silicon-compatibility.vue +++ b/pages/apple-silicon-compatibility.vue @@ -21,120 +21,113 @@ -
- +
- + :class="[ + 'rounded-xl text-3xl font-semibold scale-150 bg-darkest neumorphic-shadow focus:outline-none py-4 px-6', + isLoadingFiles ? 'shimmer' : '' + ]" + @click="triggerFilepicker" + >{{ isLoadingFiles ? 'Loading Files' : 'Select Apps' }} - Supports: Mac Apps, Zip files, and some DMG files. Bigger files take longer. + - - -
+ Supports: Mac Apps, Zip files, and some DMG files. Bigger files take longer. - Total Files: {{ foundFiles.length }} - -
- - - - - - - - - - - -
    - +
+ +
-
- Non-native Apps (🔶) -
-

- You can try getting the latest version from the developer's the download page scan that. - You can also request a manual review to determine the current status of the app on Rosetta 2. -

-
-
+
+
+ {{ question }} +
+

{{ answer }}

+
+
+
@@ -195,6 +188,27 @@ export default { }) }, + faqs () { + return [ + [ + 'Non-native Apps (🔶)', + ` + You can try getting the latest version from the developer\'s the download page scan that. + You can also request a manual review to determine the current status of the app on Rosetta 2. + ` + ], + [ + 'Why can\'t it tell me if an app will work on Rosetta 2? ', + ` + Currently, Rosetta 2 is a proprietary Apple software that is only available on macOS on Apple Silicon devices. + This means there isn't any way to test Rosetta 2 compatibility with an app without a physical Apple Silicon device and so you definitely can't test that with just a website alone... for now... + + Feel free to signup for email updates. + ` + ] + ] + }, + title () { return `Apple Silicon Compatibility` },