|
| 1 | +import type { IconType } from "react-icons"; |
| 2 | +import { |
| 3 | + RiCalendarLine, |
| 4 | + RiEarthLine, |
| 5 | + RiFacebookLine, |
| 6 | + RiGithubLine, |
| 7 | + RiInstagramLine, |
| 8 | + RiLinkedinLine, |
| 9 | + RiMailLine, |
| 10 | + RiNpmjsLine, |
| 11 | + RiPhoneLine, |
| 12 | + RiTelegramLine, |
| 13 | + RiTwitterLine, |
| 14 | +} from "react-icons/ri"; |
| 15 | +import { Social } from "@/types"; |
| 16 | + |
| 17 | +export const WEBSITE = { |
| 18 | + name: "Dmitrii Selikhov", |
| 19 | + author: "Dmitrii Selikhov", |
| 20 | + tagline: "CTO, Software Architect, Technical Lead, 3X Founder.", |
| 21 | + description: |
| 22 | + "CTO, Software Architect, Technical Lead, 3X Founder. Linking companies with top tech talents.", |
| 23 | + keywords: [""], |
| 24 | + about: "", |
| 25 | +}; |
| 26 | + |
| 27 | +export const SOCIALS: Record< |
| 28 | + Social, |
| 29 | + { name: string; title: string; icon: IconType; link: string } |
| 30 | +> = { |
| 31 | + [Social.Email]: { |
| 32 | + name: "Email", |
| 33 | + title: `Email ${WEBSITE.author}`, |
| 34 | + icon: RiMailLine, |
| 35 | + |
| 36 | + }, |
| 37 | + [Social.Phone]: { |
| 38 | + name: "Phone", |
| 39 | + title: `Call ${WEBSITE.author}`, |
| 40 | + icon: RiPhoneLine, |
| 41 | + link: "tel:+18299576440", |
| 42 | + }, |
| 43 | + [Social.Facebook]: { |
| 44 | + name: "Facebook", |
| 45 | + title: `${WEBSITE.author} on Facebook`, |
| 46 | + icon: RiFacebookLine, |
| 47 | + link: "", |
| 48 | + }, |
| 49 | + [Social.Instagram]: { |
| 50 | + name: "Instagram", |
| 51 | + title: `${WEBSITE.author} on Instagram`, |
| 52 | + icon: RiInstagramLine, |
| 53 | + link: "", |
| 54 | + }, |
| 55 | + [Social.Twitter]: { |
| 56 | + name: "Twitter", |
| 57 | + title: `${WEBSITE.author} on Twitter`, |
| 58 | + icon: RiTwitterLine, |
| 59 | + link: "https://x.com/idimetrix", |
| 60 | + }, |
| 61 | + [Social.LinkedIn]: { |
| 62 | + name: "LinkedIn", |
| 63 | + title: `${WEBSITE.author} on LinkedIn`, |
| 64 | + icon: RiLinkedinLine, |
| 65 | + link: "https://www.linkedin.com/in/dimetrix", |
| 66 | + }, |
| 67 | + [Social.Telegram]: { |
| 68 | + name: "Telegram", |
| 69 | + title: `${WEBSITE.author} on Telegram`, |
| 70 | + icon: RiTelegramLine, |
| 71 | + link: "https://t.me/dmitrii_selikhov", |
| 72 | + }, |
| 73 | + [Social.Npm]: { |
| 74 | + name: "NPM", |
| 75 | + title: `${WEBSITE.author} on NPM`, |
| 76 | + icon: RiNpmjsLine, |
| 77 | + link: "https://www.npmjs.com/~dimetrix", |
| 78 | + }, |
| 79 | + [Social.Website]: { |
| 80 | + name: "Website", |
| 81 | + title: `Visit ${WEBSITE.author}’s Website`, |
| 82 | + icon: RiEarthLine, |
| 83 | + link: "https://dmitrii-selikhov.vercel.app", |
| 84 | + }, |
| 85 | + [Social.Calendly]: { |
| 86 | + name: "Calendly", |
| 87 | + title: `Schedule with ${WEBSITE.author} on Calendly`, |
| 88 | + icon: RiCalendarLine, |
| 89 | + link: "https://calendly.com/dmitry-selikhov", |
| 90 | + }, |
| 91 | + [Social.GitHub]: { |
| 92 | + name: "GitHub", |
| 93 | + title: `${WEBSITE.author} on GitHub`, |
| 94 | + icon: RiGithubLine, |
| 95 | + link: "https://github.com/idimetrix", |
| 96 | + }, |
| 97 | +}; |
| 98 | + |
| 99 | +export * from "./variants"; |
0 commit comments