···11-import type { AccentColors, BaseColors } from "./types";
22-33-// when deploying to github pages, set this to your site url
44-// (e.g. "https://<your-github-username>.github.io")
55-export const SITE = "https://flo-bit.github.io";
66-77-// when deploying to github pages, set this to your repo name
88-// except if you're either using a custom domain or
99-// your repo name is <your-github-username>.github.io (in which case, set it to "")
1010-export const BASE = "/blog-template";
1111-1212-// will be shown in the title and meta tags and og image
1313-export const SITE_TITLE = "Blog template";
1414-export const SITE_DESCRIPTION = "Welcome to my website!";
1515-// will be used as the icon in the header and the favicon
1616-export const SITE_FAVICON = "🙃";
1717-1818-// used in the footer (c) YOUR_NAME
1919-export const NAME = "flo-bit";
2020-2121-// how many posts to show on per paginated page (also used for tag pages)
2222-export const POSTS_PER_PAGE = 5;
2323-2424-// should we show the dark mode toggle?
2525-// (otherwise, it will be based on the user's system preferences)
2626-export const MANUAL_DARK_MODE = true;
2727-2828-// should we show the search bar?
2929-export const SEARCH_ENABLED = true;
3030-3131-// shade of gray for the background
3232-// one of 'gray', 'neutral', 'stone', 'zinc', 'slate'
3333-export const BASE_COLOR: BaseColors = "stone";
3434-3535-// color of links, etc.
3636-// one of 'red', 'orange', 'amber', 'yellow', 'lime', 'green', 'emerald', 'teal',
3737-// 'cyan', 'sky', 'blue', 'indigo', 'violet', 'purple', 'fuchsia', 'pink', 'rose'
3838-export const ACCENT_COLOR: AccentColors = "amber";
3939-4040-// set any of these to '' to hide the respective icon in the footer
4141-export const FACEBOOK_URL = "";
4242-export const TWITTER_URL = "https://x.com/flobit_dev";
4343-export const GITHUB_URL = "https://github.com/flo-bit";
4444-export const INSTAGRAM_URL = "https://www.instagram.com/flobit.dev/";
4545-export const LINKEDIN_URL = "";
4646-export const YOUTUBE_URL = "";
4747-export const SUBSTACK_URL = "https://flo-bit.substack.com";
4848-export const EMAIL = "flo.bit.dev@gmail.com";