diff --git a/src/pages/AuthPage.tsx b/src/pages/AuthPage.tsx index ecd9912..0995bf7 100644 --- a/src/pages/AuthPage.tsx +++ b/src/pages/AuthPage.tsx @@ -1,6 +1,4 @@ import React, { useState } from "react"; -import { routes } from "@/routes"; -import NavbarCentered from "@/components/ui/NavbarCentered"; import RadialGradientBackground from "@/components/ui/RadialGradientBackground"; import Card from "@/components/ui/Card"; import Input from "@/components/ui/Input"; @@ -8,7 +6,6 @@ import Button from "@/components/ui/Button"; import Separator from "@/components/ui/Separator"; import SelectorButton from "@/components/ui/SelectorButton"; import TextLink from "@/components/ui/TextLink"; -import FooterMinimal from "@/components/sections/footer/FooterMinimal"; export default function AuthPage() { const [step, setStep] = useState<"initial" | "verify">("initial"); @@ -16,17 +13,11 @@ export default function AuthPage() { const [authMode, setAuthMode] = useState<"login" | "signup">("signup"); return ( -
+
- ({ name: r.label, href: r.path }))} - ctaButton={{ text: "Contact Sales", href: "/contact" }} - /> - -
- +
+ {step === "initial" ? ( <>
@@ -81,9 +72,7 @@ export default function AuthPage() {
- {authMode === "signup" ? "Already have an account? " : "Don't have an account? "} - setAuthMode(authMode === "signup" ? "login" : "signup")} className="text-foreground font-medium cursor-pointer" /> @@ -124,13 +113,6 @@ export default function AuthPage() { )} -
- -
-
);