-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.ts
More file actions
35 lines (32 loc) · 880 Bytes
/
config.ts
File metadata and controls
35 lines (32 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import { Inter } from "next/font/google";
import { RouterItem } from "@/common/types";
import { Icons } from "./components/Icons";
export const fontBase = Inter({ subsets: ["latin"], variable: "--font-base" });
export const APP_CONFIG = {
APP_NAME: "Cursive Starter",
APP_DESCRIPTION: "A starter template for Cursive",
SUPPORT_EMAIL: "example@gmail.com",
ALLOW_INCOGNITO: false, // Set to false if you want to disable incognito mode
IS_MOBILE_ONLY: true, // Set to true if you want to disable the web version
FOOTER_ICON_SIZE: 20,
};
export const ROUTER_ITEMS: RouterItem[] = [
{
label: "Home",
href: "/",
icon: Icons.Home,
iconSize: 20,
},
{
label: "Settings",
href: "/settings",
icon: Icons.Settings,
iconSize: 20,
},
{
label: "Components",
href: "/components",
icon: Icons.Profile,
iconSize: 20,
},
];