mirror of
https://github.com/LukeHagar/website.git
synced 2025-12-06 12:57:48 +00:00
prettify
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
export const GITHUB_STARS = '42.8K';
|
||||
export const BANNER_KEY: Banners = 'discord-banner-01'; // Change key to force banner to show again
|
||||
export const GITHUB_STARS = "42.8K";
|
||||
export const BANNER_KEY: Banners = "discord-banner-01"; // Change key to force banner to show again
|
||||
export const SENTRY_DSN =
|
||||
'https://27d41dc8bb67b596f137924ab8599e59@o1063647.ingest.us.sentry.io/4507497727000576';
|
||||
"https://27d41dc8bb67b596f137924ab8599e59@o1063647.ingest.us.sentry.io/4507497727000576";
|
||||
|
||||
/**
|
||||
* History:
|
||||
@@ -9,73 +9,72 @@ export const SENTRY_DSN =
|
||||
* init-banner-02
|
||||
* pricing-banner-01
|
||||
*/
|
||||
type Banners = 'discord-banner-01' | 'init-banner-02' | 'pricing-banner-01'
|
||||
|
||||
type Banners = "discord-banner-01" | "init-banner-02" | "pricing-banner-01";
|
||||
|
||||
export type Social = {
|
||||
icon: string;
|
||||
label: string;
|
||||
link: string;
|
||||
icon: string;
|
||||
label: string;
|
||||
link: string;
|
||||
};
|
||||
|
||||
export type SocialShareOption = {
|
||||
icon: string;
|
||||
label: string;
|
||||
link: string;
|
||||
type: 'link' | 'copy';
|
||||
icon: string;
|
||||
label: string;
|
||||
link: string;
|
||||
type: "link" | "copy";
|
||||
};
|
||||
|
||||
export const socialSharingOptions: Array<SocialShareOption> = [
|
||||
{
|
||||
icon: 'web-icon-x',
|
||||
label: 'Twitter',
|
||||
link: 'https://x.com/intent/post?text={TITLE}\n&url={URL}',
|
||||
type: 'link'
|
||||
},
|
||||
{
|
||||
icon: 'web-icon-linkedin',
|
||||
label: 'LinkedIn',
|
||||
link: 'https://www.linkedin.com/sharing/share-offsite?text={TITLE}\n&url={URL}',
|
||||
type: 'link'
|
||||
},
|
||||
{
|
||||
icon: 'web-icon-ycombinator',
|
||||
label: 'YCombinator',
|
||||
link: 'https://news.ycombinator.com/submitlink?t={TITLE}\n&u={URL}',
|
||||
type: 'link'
|
||||
},
|
||||
{
|
||||
icon: 'web-icon-copy',
|
||||
label: 'Copy',
|
||||
link: '',
|
||||
type: 'copy'
|
||||
}
|
||||
]
|
||||
{
|
||||
icon: "web-icon-x",
|
||||
label: "Twitter",
|
||||
link: "https://x.com/intent/post?text={TITLE}\n&url={URL}",
|
||||
type: "link",
|
||||
},
|
||||
{
|
||||
icon: "web-icon-linkedin",
|
||||
label: "LinkedIn",
|
||||
link: "https://www.linkedin.com/sharing/share-offsite?text={TITLE}\n&url={URL}",
|
||||
type: "link",
|
||||
},
|
||||
{
|
||||
icon: "web-icon-ycombinator",
|
||||
label: "YCombinator",
|
||||
link: "https://news.ycombinator.com/submitlink?t={TITLE}\n&u={URL}",
|
||||
type: "link",
|
||||
},
|
||||
{
|
||||
icon: "web-icon-copy",
|
||||
label: "Copy",
|
||||
link: "",
|
||||
type: "copy",
|
||||
},
|
||||
];
|
||||
|
||||
export const socials: Array<Social> = [
|
||||
{
|
||||
icon: 'web-icon-discord',
|
||||
label: 'Discord',
|
||||
link: 'https://appwrite.io/discord'
|
||||
},
|
||||
{
|
||||
icon: 'web-icon-github',
|
||||
label: 'Github',
|
||||
link: 'https://github.com/appwrite'
|
||||
},
|
||||
{
|
||||
icon: 'web-icon-x',
|
||||
label: 'Twitter',
|
||||
link: 'https://twitter.com/intent/follow?screen_name=appwrite'
|
||||
},
|
||||
{
|
||||
icon: 'web-icon-linkedin',
|
||||
label: 'LinkedIn',
|
||||
link: 'https://www.linkedin.com/company/appwrite'
|
||||
},
|
||||
{
|
||||
icon: 'web-icon-youtube',
|
||||
label: 'YouTube',
|
||||
link: 'https://www.youtube.com/c/appwrite?sub_confirmation=1'
|
||||
}
|
||||
{
|
||||
icon: "web-icon-discord",
|
||||
label: "Discord",
|
||||
link: "https://appwrite.io/discord",
|
||||
},
|
||||
{
|
||||
icon: "web-icon-github",
|
||||
label: "Github",
|
||||
link: "https://github.com/appwrite",
|
||||
},
|
||||
{
|
||||
icon: "web-icon-x",
|
||||
label: "Twitter",
|
||||
link: "https://twitter.com/intent/follow?screen_name=appwrite",
|
||||
},
|
||||
{
|
||||
icon: "web-icon-linkedin",
|
||||
label: "LinkedIn",
|
||||
link: "https://www.linkedin.com/company/appwrite",
|
||||
},
|
||||
{
|
||||
icon: "web-icon-youtube",
|
||||
label: "YouTube",
|
||||
link: "https://www.youtube.com/c/appwrite?sub_confirmation=1",
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user