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
Binary file modified src/frontend/favicon-new.ico
Binary file not shown.
1 change: 1 addition & 0 deletions src/frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
<body id="body" class="dark" style="width: 100%; height: 100%">
<noscript>You need to enable JavaScript to run this app.</noscript>
<div style="width: 100vw; height: 100vh" id="root"></div>
<video src="https://framerusercontent.com/assets/6BpQgfEyAgboNFz8BwWDCIFDtY.mp4" loop="" preload="auto" muted="" playsinline="" class="background-image"></video>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>
Binary file modified src/frontend/public/favicon.ico
Binary file not shown.
20 changes: 20 additions & 0 deletions src/frontend/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -223,3 +223,23 @@ code {
.cm-gutters {
display: none !important;
}

.header-logo {
height: 44px !important;
}

.background-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
cursor: auto;
width: 100%;
height: 100%;
z-index: -1;
border-radius: 0px;
display: block;
object-fit: cover;
background-color: rgba(204, 29, 29, 0);
object-position: 50% 50%;
}
1 change: 1 addition & 0 deletions src/frontend/src/assets/NewcodeLogo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 5 additions & 5 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 NewcodeLogo from "@/assets/NewcodeLogo.svg?react";
import ForwardedIconComponent from "@/components/common/genericIconComponent";
import ShadTooltip from "@/components/common/shadTooltipComponent";
import { Button } from "@/components/ui/button";
Expand Down Expand Up @@ -62,13 +62,13 @@ export default function AppHeader(): JSX.Element {
<Button
unstyled
onClick={() => navigate("/")}
className="mr-1 flex h-8 w-8 items-center"
className="mr-1 flex items-center"
data-testid="icon-ChevronLeft"
>
{ENABLE_DATASTAX_LANGFLOW ? (
<DataStaxLogo className="fill-black dark:fill-[white]" />
) : (
<LangflowLogo className="h-6 w-6" />
<NewcodeLogo className="header-logo"/>
)}
</Button>
{ENABLE_DATASTAX_LANGFLOW && (
Expand All @@ -89,14 +89,14 @@ export default function AppHeader(): JSX.Element {
className={`relative left-3 z-30 flex items-center gap-3`}
data-testid="header_right_section_wrapper"
>
<>
{/* <>
<Button
unstyled
className="hidden items-center whitespace-nowrap pr-2 lg:inline"
>
<CustomLangflowCounts />
</Button>
</>
</> */}
<AlertDropdown
notificationRef={notificationContentRef}
onClose={() => setActiveState(null)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { SidebarMenuButton } from "@/components/ui/sidebar";
export const CustomStoreButton = () => {
return (
<>
<div className="flex w-full items-center" data-testid="button-store">
{/* <div className="flex w-full items-center" data-testid="button-store">
<SidebarMenuButton
size="md"
className="text-sm"
Expand All @@ -15,7 +15,7 @@ export const CustomStoreButton = () => {
<ForwardedIconComponent name="Store" className="h-4 w-4" />
Store
</SidebarMenuButton>
</div>
</div> */}
</>
);
};