Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<!-- markdownlint-disable MD030 -->
#test
#
![Langflow](./docs/static/img/hero.png)

Expand Down
1 change: 0 additions & 1 deletion src/frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/frontend/src/components/core/appHeaderComponent/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import AlertDropdown from "@/alerts/alertDropDown";
import DataStaxLogo from "@/assets/DataStaxLogo.svg?react";
import LangflowLogo from "@/assets/LangflowLogo.svg?react";
import KendraLabsLogo from "@/assets/kendraLabsLogo200x200.png";
import ForwardedIconComponent from "@/components/common/genericIconComponent";
import ShadTooltip from "@/components/common/shadTooltipComponent";
import { Button } from "@/components/ui/button";
Expand Down Expand Up @@ -62,7 +62,7 @@ export default function AppHeader(): JSX.Element {
{ENABLE_DATASTAX_LANGFLOW ? (
<DataStaxLogo className="fill-black dark:fill-[white]" />
) : ENABLE_NEW_LOGO ? (
<LangflowLogo className="h-5 w-6" />
<img src={KendraLabsLogo} className="h-5 w-6" />
) : (
<span className="fill-black text-2xl dark:fill-white">⛓️</span>
)}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import LangflowLogo from "@/assets/LangflowLogo.svg?react";
import KendraLabsLogo from "@/assets/kendraLabsLogo200x200.png";
import ChainLogo from "@/assets/logo.svg?react";
import { TextEffectPerChar } from "@/components/ui/textAnimation";
import { ENABLE_NEW_LOGO } from "@/customization/feature-flags";
Expand Down Expand Up @@ -181,7 +181,8 @@ export default function ChatView({
<div className="flex h-full w-full flex-col items-center justify-center">
<div className="flex flex-col items-center justify-center gap-4 p-8">
{ENABLE_NEW_LOGO ? (
<LangflowLogo
<img
src={KendraLabsLogo}
title="Langflow logo"
className="h-10 w-10 scale-[1.5]"
/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import LangflowLogo from "@/assets/LangflowLogo.svg?react";
import KendraLabsLogo from "@/assets/kendraLabsLogo200x200.png";
import ChainLogo from "@/assets/logo.svg?react";
import { ENABLE_NEW_LOGO } from "@/customization/feature-flags";

Expand All @@ -7,10 +7,7 @@ export default function LogoIcon() {
<div className="relative flex h-8 w-8 items-center justify-center rounded-md bg-muted">
<div className="flex h-8 w-8 items-center justify-center">
{ENABLE_NEW_LOGO ? (
<LangflowLogo
title="Langflow Logo"
className="absolute h-[18px] w-[18px]"
/>
<img src={KendraLabsLogo} className="absolute h-[18px] w-[18px]" />
) : (
<ChainLogo
title="Langflow Logo"
Expand Down
5 changes: 3 additions & 2 deletions src/frontend/src/pages/AdminPage/LoginPage/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import LangflowLogo from "@/assets/LangflowLogo.svg?react";
import KendraLabsLogo from "@/assets/kendraLabsLogo200x200.png";
import { useLoginUser } from "@/controllers/API/queries/auth";
import { ENABLE_NEW_LOGO } from "@/customization/feature-flags";
import { useContext, useState } from "react";
Expand Down Expand Up @@ -52,7 +52,8 @@ export default function LoginAdminPage() {
<div className="flex h-full w-full flex-col items-center justify-center bg-muted">
<div className="flex w-72 flex-col items-center justify-center gap-2">
{ENABLE_NEW_LOGO ? (
<LangflowLogo
<img
src={KendraLabsLogo}
title="Langflow logo"
className="h-10 w-10 scale-[1.5]"
/>
Expand Down
5 changes: 3 additions & 2 deletions src/frontend/src/pages/DeleteAccountPage/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import LangflowLogo from "@/assets/LangflowLogo.svg?react";
import KendraLabsLogo from "@/assets/kendraLabsLogo200x200.png";
import { ENABLE_NEW_LOGO } from "@/customization/feature-flags";
import { useState } from "react";
import { Button } from "../../components/ui/button";
Expand All @@ -20,7 +20,8 @@ export default function DeleteAccountPage() {
<div className="flex h-full w-full flex-col items-center justify-center bg-muted">
<div className="flex w-72 flex-col items-center justify-center gap-2">
{ENABLE_NEW_LOGO ? (
<LangflowLogo
<img
src={KendraLabsLogo}
title="Langflow logo"
className="mb-4 h-10 w-10 scale-[1.5]"
/>
Expand Down
5 changes: 3 additions & 2 deletions src/frontend/src/pages/LoginPage/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import LangflowLogo from "@/assets/LangflowLogo.svg?react";
import KendraLabsLogo from "@/assets/kendraLabsLogo200x200.png";
import { useLoginUser } from "@/controllers/API/queries/auth";
import { CustomLink } from "@/customization/components/custom-link";
import { ENABLE_NEW_LOGO } from "@/customization/feature-flags";
Expand Down Expand Up @@ -68,7 +68,8 @@ export default function LoginPage(): JSX.Element {
<div className="flex h-full w-full flex-col items-center justify-center bg-muted">
<div className="flex w-72 flex-col items-center justify-center gap-2">
{ENABLE_NEW_LOGO ? (
<LangflowLogo
<img
src={KendraLabsLogo}
title="Langflow logo"
className="mb-4 h-10 w-10 scale-[1.5]"
/>
Expand Down
4 changes: 2 additions & 2 deletions src/frontend/src/pages/MainPage/pages/emptyPage/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import LangflowLogo from "@/assets/LangflowLogo.svg?react";
import KendraLabsLogo from "@/assets/kendraLabsLogo200x200.png";
import ForwardedIconComponent from "@/components/common/genericIconComponent";
import { Button } from "@/components/ui/button";
import { ENABLE_NEW_LOGO } from "@/customization/feature-flags";
Expand All @@ -16,7 +16,7 @@ export const EmptyPage = ({ setOpenModal }: EmptyPageProps) => {
<div className="text-container">
<div className="relative z-20 flex w-full flex-col items-center justify-center gap-2">
{ENABLE_NEW_LOGO ? (
<LangflowLogo className="h-7 w-8" />
<img src={KendraLabsLogo} className="h-7 w-8" />
) : (
<span className="fill-foreground text-4xl">⛓️</span>
)}
Expand Down
5 changes: 3 additions & 2 deletions src/frontend/src/pages/SignUpPage/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import LangflowLogo from "@/assets/LangflowLogo.svg?react";
import KendraLabsLogo from "@/assets/kendraLabsLogo200x200.png";
import InputComponent from "@/components/core/parameterRenderComponent/components/inputComponent";
import { useAddUser } from "@/controllers/API/queries/auth";
import { CustomLink } from "@/customization/components/custom-link";
Expand Down Expand Up @@ -92,7 +92,8 @@ export default function SignUp(): JSX.Element {
<div className="flex h-full w-full flex-col items-center justify-center bg-muted">
<div className="flex w-72 flex-col items-center justify-center gap-2">
{ENABLE_NEW_LOGO ? (
<LangflowLogo
<img
src={KendraLabsLogo}
title="Langflow logo"
className="mb-4 h-10 w-10 scale-[1.5]"
/>
Expand Down
Loading