-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
220 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { FC, HTMLAttributes } from "react"; | ||
import { cn } from "@/utils"; | ||
|
||
type Props = HTMLAttributes<HTMLDivElement>; | ||
|
||
export const Logotype: FC<Props> = ({ className, ...rest }) => { | ||
return ( | ||
<div className={cn("text-3xl", className)} {...rest}> | ||
<span className="font-bold">[dmitrii]</span>{" "} | ||
<span className="">selikhov</span>{" "} | ||
<span className="text-accent font-bold">.</span> | ||
</div> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
import type { IconType } from "react-icons"; | ||
import { | ||
RiCalendarLine, | ||
RiEarthLine, | ||
RiFacebookLine, | ||
RiGithubLine, | ||
RiInstagramLine, | ||
RiLinkedinLine, | ||
RiMailLine, | ||
RiNpmjsLine, | ||
RiPhoneLine, | ||
RiTelegramLine, | ||
RiTwitterLine, | ||
} from "react-icons/ri"; | ||
import { Social } from "@/types"; | ||
|
||
export const WEBSITE = { | ||
name: "Dmitrii Selikhov", | ||
author: "Dmitrii Selikhov", | ||
tagline: "CTO, Software Architect, Technical Lead, 3X Founder.", | ||
description: | ||
"CTO, Software Architect, Technical Lead, 3X Founder. Linking companies with top tech talents.", | ||
keywords: [""], | ||
about: "", | ||
}; | ||
|
||
export const SOCIALS: Record< | ||
Social, | ||
{ name: string; title: string; icon: IconType; link: string } | ||
> = { | ||
[Social.Email]: { | ||
name: "Email", | ||
title: `Email ${WEBSITE.author}`, | ||
icon: RiMailLine, | ||
link: "mailto:[email protected]", | ||
}, | ||
[Social.Phone]: { | ||
name: "Phone", | ||
title: `Call ${WEBSITE.author}`, | ||
icon: RiPhoneLine, | ||
link: "tel:+18299576440", | ||
}, | ||
[Social.Facebook]: { | ||
name: "Facebook", | ||
title: `${WEBSITE.author} on Facebook`, | ||
icon: RiFacebookLine, | ||
link: "", | ||
}, | ||
[Social.Instagram]: { | ||
name: "Instagram", | ||
title: `${WEBSITE.author} on Instagram`, | ||
icon: RiInstagramLine, | ||
link: "", | ||
}, | ||
[Social.Twitter]: { | ||
name: "Twitter", | ||
title: `${WEBSITE.author} on Twitter`, | ||
icon: RiTwitterLine, | ||
link: "https://x.com/idimetrix", | ||
}, | ||
[Social.LinkedIn]: { | ||
name: "LinkedIn", | ||
title: `${WEBSITE.author} on LinkedIn`, | ||
icon: RiLinkedinLine, | ||
link: "https://www.linkedin.com/in/dimetrix", | ||
}, | ||
[Social.Telegram]: { | ||
name: "Telegram", | ||
title: `${WEBSITE.author} on Telegram`, | ||
icon: RiTelegramLine, | ||
link: "https://t.me/dmitrii_selikhov", | ||
}, | ||
[Social.Npm]: { | ||
name: "NPM", | ||
title: `${WEBSITE.author} on NPM`, | ||
icon: RiNpmjsLine, | ||
link: "https://www.npmjs.com/~dimetrix", | ||
}, | ||
[Social.Website]: { | ||
name: "Website", | ||
title: `Visit ${WEBSITE.author}’s Website`, | ||
icon: RiEarthLine, | ||
link: "https://dmitrii-selikhov.vercel.app", | ||
}, | ||
[Social.Calendly]: { | ||
name: "Calendly", | ||
title: `Schedule with ${WEBSITE.author} on Calendly`, | ||
icon: RiCalendarLine, | ||
link: "https://calendly.com/dmitry-selikhov", | ||
}, | ||
[Social.GitHub]: { | ||
name: "GitHub", | ||
title: `${WEBSITE.author} on GitHub`, | ||
icon: RiGithubLine, | ||
link: "https://github.com/idimetrix", | ||
}, | ||
}; | ||
|
||
export * from "./variants"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.