Files
openmonetis/src/app/(auth)/signup/page.tsx
Alexsandro 22a88de993 style(ui): update auth pages layout and navigation capitalization
This commit improves the visual design of the auth pages by adding a new layout wrapper with an animated blob background effect and updating the auth card shell with a glassmorphism style. It also updates the navigation items to use capitalized labels instead of lowercase for better readability.
2026-04-15 14:35:44 -03:00

6 lines
135 B
TypeScript

import { SignupForm } from "@/features/auth/components/signup-form";
export default function SignupPage() {
return <SignupForm />;
}