import { faArrowRight } from "@fortawesome/free-solid-svg-icons"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { useTheme } from "next-themes"; import Link from "next/link"; import Image from "next/future/image"; import { NextPageWithLayout } from "./_app"; import { ReactElement } from "react"; import onyxDark from "../public/demos/onyx-dark.png"; import onyxLight from "../public/demos/onyx-light.png"; import AmePreview from "../components/AmePreview"; import HomeSection from "../components/HomeSection"; const Home: NextPageWithLayout = () => { const { resolvedTheme } = useTheme(); return ( <>

An arch based distribution

Crystal Linux is a brand new Arch Linux based distritbution. Powerful and easy to use.

Download Getting Started

Beautiful

Onyx built-in

Install Crystal with it{"'"}s in-house desktop experience, a custom GNOME session with a familiar layout. Or choose your favourite!

demo of the onyx desktop environment

Buttery

Automatic Backups

Backup & Restore your system. Easily boot into Btrfs snapshots.

Rusty Quartz?

Amethyst

Amethyst is a fast, efficient and lightweight AUR helper and Pacman wrapper. Made for Crystal, compatible with any Arch-based Linux distribution

); }; Home.getLayout = function getLayout(page: ReactElement) { return
{page}
; }; export default Home;