- ));
-
- return (
-
-
-
- {title}
-
-
- {subtitle}
-
-
- {availability}
-
-
-
-
- {items}
-
-
-
- );*/
-}
\ No newline at end of file
diff --git a/src/Home/HomeCores/HomeCores.module.css b/src/Home/HomeCores/HomeCores.module.css
deleted file mode 100644
index 0cf22aa..0000000
--- a/src/Home/HomeCores/HomeCores.module.css
+++ /dev/null
@@ -1,23 +0,0 @@
-.wrapper {
- position: relative;
- margin-bottom: rem(120px);
- box-sizing: border-box;
-}
-
-.title {
- font-family:
- Greycliff CF,
- var(--mantine-font-family);
- font-size: rem(36px);
- font-weight: 900;
- line-height: 1.1;
- margin-bottom: var(--mantine-spacing-md);
- color: light-dark(var(--mantine-color-black), var(--mantine-color-white));
-}
-
-.control {
- &[data-inactive] {
- opacity: 0;
- cursor: default;
- }
-}
\ No newline at end of file
diff --git a/src/Home/HomeCores/HomeCores.tsx b/src/Home/HomeCores/HomeCores.tsx
deleted file mode 100644
index 621d189..0000000
--- a/src/Home/HomeCores/HomeCores.tsx
+++ /dev/null
@@ -1,155 +0,0 @@
-/*
-import { Carousel } from '@mantine/carousel';
-import { Container, rem } from '@mantine/core';
-import {
- IconDeviceGamepad, IconDeviceGamepad2, IconBrandGithub,
- IconMicrophone, IconVolume, IconCircleArrowLeft,
- IconCircleArrowRight
-} from '@tabler/icons-react';
-import { HomeCoreCard } from './HomeCoreCard';
-import classes from './HomeCores.module.css';
-*/
-
-import { Tabs, Space, Title } from "@mantine/core";
-import {
- IconDeviceGamepad, IconDeviceGamepad2, IconBrandGithub,
- IconMicrophone, IconVolume
-} from '@tabler/icons-react';
-import { Availability, HomeCoreCard } from './HomeCoreCard';
-
-const data = [
- {
- availability: Availability.AVAILABLE,
- features: [
- {
- icon: IconDeviceGamepad,
- title: 'Full Controller Support',
- subtitle: 'Supports Backbone One, PlayStation DualShock 4, PlayStation 5 DualSense, Xbox Series S and Xbox Series X controllers'
- },
- {
- icon: IconBrandGithub,
- title: 'Fully Open Source',
- subtitle: 'Licensed under GPLv3 to maintain full transparency and to give people the opportunity to build Folium for themselves'
- },
- {
- icon: IconMicrophone,
- title: 'Audio Input',
- subtitle: 'Making use of OpenAL, Folium provides supported cores with crystal clear audio input'
- },
- {
- icon: IconVolume,
- title: 'Native Audio Output',
- subtitle: 'Making use of Apple\'s CoreAudio API, Folium provides a seamless audio listening experience'
- }
- ],
- title: 'Nintendo',
- subtitle: 'Emulate the Game Boy Advance, Nintendo 3DS and Nintendo DS'
- },
- {
- availability: Availability.COMING_SOON,
- features: [
- {
- icon: IconDeviceGamepad2,
- title: 'Full Controller Support',
- subtitle: 'Supports Backbone One, PlayStation DualShock 4, PlayStation 5 DualSense, Xbox Series S and Xbox Series X controllers'
- },
- {
- icon: IconBrandGithub,
- title: 'Fully Open Source',
- subtitle: 'Licensed under GPLv3 to maintain full transparency and to give people the oppurtunity to build Folium for themselves'
- }
- ],
- title: 'PlayStation',
- subtitle: 'Emulate the PlayStation 1 and PlayStation 2'
- },
- {
- availability: Availability.COMING_SOON,
- features: [
- {
- icon: IconDeviceGamepad,
- title: 'Full Controller Support',
- subtitle: 'Supports Backbone One, PlayStation DualShock 4, PlayStation 5 DualSense, Xbox Series S and Xbox Series X controllers'
- },
- {
- icon: IconBrandGithub,
- title: 'Fully Open Source',
- subtitle: 'Licensed under GPLv3 to maintain full transparency and to give people the oppurtunity to build Folium for themselves'
- }
- ],
- title: 'SEGA',
- subtitle: 'Emulate the SEGA Genesis'
- }
-];
-
-export function HomeCores() {
- const tabValues = [
- {
- disabled: false,
- id: 'nintendo',
- title: 'Nintendo'
- },
- {
- disabled: true,
- id: 'playstation',
- title: 'PlayStation'
- },
- {
- disabled: true,
- id: 'sega',
- title: 'SEGA'
- }
- ];
-
- const tabs = tabValues.map((tab) => (
- {tab.title}
- ));
-
- const panels = tabValues.map((tab, index) => (
-
-
-
- ));
-
- return (
- <>
-
- Cores
-
-
-
-
- {tabs}
-
-
- {...panels}
-
- >
- );
-
- /*
- const slides = data.map((item) => (
-
-
-
- ));
-
- return (
-
-
- }
- previousControlIcon={
-
- }
- >
- {slides}
-
-
- );
- */
-}
\ No newline at end of file
diff --git a/src/Home/HomeFAQ/HomeFAQ.tsx b/src/Home/HomeFAQ/HomeFAQ.tsx
deleted file mode 100644
index 4dd7ffe..0000000
--- a/src/Home/HomeFAQ/HomeFAQ.tsx
+++ /dev/null
@@ -1,86 +0,0 @@
-import { Space, Title, Accordion } from '@mantine/core';
-import { IconMoneybag, IconFileImport, IconPaint } from '@tabler/icons-react';
-
-/*
-const questions = [
- {
- value: 'purchase-price-and-type',
- answer: 'Folium will cost a one-time payment of $4.99 USD',
- question: 'What will Folium cost on the App Store?'
- },
- {
- value: 'games-and-system-files',
- answer: 'Games and system files must be dumped from a console or handheld you own',
- question: 'How do we get games and system files?'
- },
- {
- value: 'supported-and-upcoming-cores',
- answer: 'Currently the Game Boy Advance, Nintendo 3DS and Nintendo DS are supported with plans for a handful of other retro consoles and handhelds to be added',
- question: 'What consoles and handhelds are and will be supported?'
- },
- {
- value: 'is-jit-supported',
- answer: 'No. Apple does not allow JIT for apps on both the App Store and TestFlight',
- question: 'Does Folium on the App Store or TestFlight support JIT?'
- },
- {
- value: 'game-compatibility',
- answer: 'Folium has a high compatibility for most games in most of the cores however, some games work better than others and the device it is being played on plays a significant role in compatibility',
- question: 'Do all games work on all cores within Folium?'
- },
- {
- value: 'missing-features-and-functionality',
- answer: 'Folium is still very much a work-in-progress, a lot of features and functionality do exist within the app but there is still a lot more that need to be added',
- question: 'Does Folium contain all features and functionality?'
- },
- {
- value: 'cheats-mods-and-saves',
- answer: 'The Cytrus core supports all 3 however, some need to be done manually through Files. Grape supports saves but neither cheats nor mods at this time',
- question: 'Does Folium support cheats, mods and saves?'
- },
-];
-*/
-
-const questions = [
- {
- icon: IconMoneybag,
- id: 'pricing',
- question: 'How much does Folium cost on the App Store?',
- answer: 'Folium costs a one-time payment of $4.99 USD'
- },
- {
- icon: IconFileImport,
- id: 'file-types',
- question: 'What file extensions does Folium support?',
- answer: 'Folium currently supports .3ds, .app, .cia, .cci and .cxi for Cytrus and .gba, .ds and .nds for Grape'
- },
- {
- icon: IconPaint,
- id: 'skins',
- question: 'How does someone make a skin for Folium?',
- answer: 'Skins can be made by following the guide here: https://official-antique.gitbook.io/folium'
- }
-];
-
-export function HomeFAQ() {
- const map = questions.map((question) => (
-
- }>
- {question.question}
-
- {question.answer}
-
- ));
-
- return (
- <>
-
- Frequently Asked Questions
-
-
-
- {map}
-
- >
- );
-}
\ No newline at end of file
diff --git a/src/Home/HomeFooter/HomeFooter.module.css b/src/Home/HomeFooter/HomeFooter.module.css
deleted file mode 100644
index af5f9d9..0000000
--- a/src/Home/HomeFooter/HomeFooter.module.css
+++ /dev/null
@@ -1,21 +0,0 @@
-.footer {
- border-top: rem(1px) solid light-dark(var(--mantine-color-gray-2), var(--mantine-color-dark-5));
-}
-
-.inner {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding-top: var(--mantine-spacing-xl);
- padding-bottom: var(--mantine-spacing-xl);
-
- @media (max-width: $mantine-breakpoint-xs) {
- flex-direction: column;
- }
-}
-
-.links {
- @media (max-width: $mantine-breakpoint-xs) {
- margin-top: var(--mantine-spacing-md);
- }
-}
\ No newline at end of file
diff --git a/src/Home/HomeFooter/HomeFooter.tsx b/src/Home/HomeFooter/HomeFooter.tsx
deleted file mode 100644
index e17f5e4..0000000
--- a/src/Home/HomeFooter/HomeFooter.tsx
+++ /dev/null
@@ -1,50 +0,0 @@
-import { Container, Group, ActionIcon, Title } from '@mantine/core';
-import {
- IconBrandReddit, IconBrandTwitch,
- IconBrandTwitter, IconBrandYoutube
-} from '@tabler/icons-react';
-import classes from './HomeFooter.module.css';
-
-export function HomeFooter() {
- return (
-