-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
5d47dcb
commit fc00a87
Showing
6 changed files
with
270 additions
and
147 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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 |
---|---|---|
@@ -1,17 +1,17 @@ | ||
import Link from 'next/link'; | ||
import { DiscordLogo, YoutubeLogoFill } from '@jengaicons/react'; | ||
import { BrandLogo } from 'kl-design-system/branding/brand-logo'; | ||
import Link from 'next/link'; | ||
import { | ||
GithubLogoFill, | ||
LinkedinLogoFill, | ||
TwitterNewLogoFill, | ||
} from '~/app/icons/icons'; | ||
import OssIcon from '~/images/homeNew/oss.svg'; | ||
import OssIconDark from '~/images/homeNew/oss-dark.svg'; | ||
import OssIcon from '~/images/homeNew/oss.svg'; | ||
import ThemeSwitcher from '../components/theme-switcher'; | ||
import { cn } from './commons'; | ||
import { IConfig } from './use-config'; | ||
import ThemeSwitcher from '../components/theme-switcher'; | ||
import { useTheme } from './useTheme'; | ||
import { YoutubeLogoFill } from '@jengaicons/react'; | ||
|
||
export const siteDesc = | ||
'Kloudlite is a remote-local development environment platform designed to streamline the workflow for developers working on distributed applications. By integrating both local and remote environments through Kubernetes, Kloudlite ensures a seamless, productive, and more connected development experience.'; | ||
|
@@ -25,6 +25,7 @@ export const communityUrl = | |
export const changeLogUrl = 'https://github.com/kloudlite/kloudlite/releases'; | ||
const linkedinUrl = 'https://linkedin.com/company/kloudlite-io'; | ||
const youtubeUrl = 'https://youtube.com/@kloudliteofficial'; | ||
const discordUrl = 'https://discord.gg/4Y7VHccg'; | ||
const xUrl = 'https://x.com/kloudlite'; | ||
export const supportEmail = '[email protected]'; | ||
const socialIconSize = 18; | ||
|
@@ -38,6 +39,9 @@ const SocialMenu = () => { | |
<a target="_blank" href={xUrl} aria-label="kloudlite-x"> | ||
<TwitterNewLogoFill size={socialIconSize} /> | ||
</a> | ||
<a target="_blank" href={discordUrl} aria-label="kloudlite-discord"> | ||
<DiscordLogo size={socialIconSize} /> | ||
</a> | ||
<a target="_blank" href={linkedinUrl} aria-label="kloudlite-linkedin"> | ||
<LinkedinLogoFill size={socialIconSize} /> | ||
</a> | ||
|
@@ -57,7 +61,7 @@ const BrandMenu = ({ className }: { className?: string }) => { | |
<div | ||
className={cn( | ||
'wb-flex wb-flex-col wb-gap-7xl md:wb-gap-3xl lg:wb-pr-4xl wb-order-last md:wb-order-first md:wb-justify-between md:wb-h-full', | ||
className, | ||
className | ||
)} | ||
> | ||
<div className="wb-flex wb-flex-row"> | ||
|
Oops, something went wrong.