diff --git a/app/src/pages/login/LoginPage.tsx b/app/src/pages/login/LoginPage.tsx index ecd15e171c..a4f25c4f49 100644 --- a/app/src/pages/login/LoginPage.tsx +++ b/app/src/pages/login/LoginPage.tsx @@ -3,18 +3,29 @@ import { css } from "@emotion/react"; import { Button, Flex, Form, TextField, View } from "@arizeai/components"; -import { Logo } from "@phoenix/components/nav/Logo"; +import { PhoenixLogo } from "./PhoenixLogo"; export function LoginPage() { return (
- - + +
@@ -58,6 +69,31 @@ export function LoginPage() {
+
); } diff --git a/app/src/pages/login/PhoenixLogo.tsx b/app/src/pages/login/PhoenixLogo.tsx new file mode 100644 index 0000000000..22315ee226 --- /dev/null +++ b/app/src/pages/login/PhoenixLogo.tsx @@ -0,0 +1,308 @@ +import React from "react"; + +export function PhoenixLogo() { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); +}