pikaos-site/src/config.mjs

32 lines
941 B
JavaScript
Raw Normal View History

2023-01-10 18:16:37 +01:00
import defaultImage from './assets/images/default.png';
const CONFIG = {
name: 'PikaOS',
2023-02-21 19:03:23 +01:00
origin: 'https://pika-os.com',
2023-01-10 18:16:37 +01:00
basePathname: '/',
trailingSlash: false,
title: 'PikaOS — The cool birb OS',
2023-02-21 19:33:46 +01:00
description: 'PikaOS is a gaming focused linux distribution focussing on ease of use and high compatability. Using the know how from Nobara combined with a Ubuntu base, PikaOS is almost unrivaled in software compatability.',
2023-01-10 18:16:37 +01:00
defaultImage: defaultImage,
defaultTheme: 'dark', // Values: "system" | "light" | "dark" | "light:only" | "dark:only"
2023-01-10 18:16:37 +01:00
language: 'en',
textDirection: 'ltr',
dateFormatter: new Intl.DateTimeFormat('en', {
year: 'numeric',
month: 'short',
day: 'numeric',
timeZone: 'UTC',
}),
googleAnalyticsId: false,
2023-01-10 18:16:37 +01:00
googleSiteVerificationId: false,
};
export const SITE = {...CONFIG };
export const DATE_FORMATTER = CONFIG.dateFormatter;