From 21bb79ff6210bc6ae300c7c0c20f6de3ebd2caf6 Mon Sep 17 00:00:00 2001 From: Dodo Date: Sat, 13 Jun 2026 11:23:15 +0700 Subject: [PATCH] changing auth page to be Waras --- frontend/components/logo.tsx | 62 ++++++++++++++++++++++++------------ 1 file changed, 42 insertions(+), 20 deletions(-) diff --git a/frontend/components/logo.tsx b/frontend/components/logo.tsx index 6a6ecad..fe95d24 100644 --- a/frontend/components/logo.tsx +++ b/frontend/components/logo.tsx @@ -1,26 +1,48 @@ import type React from "react"; +/** + * LogoIcon: A clean, modern geometric mark representing "Waras" + * Uses abstract overlapping pill/capsule shapes to form a stylized 'W'. + */ export const LogoIcon = (props: React.ComponentProps<"svg">) => ( - - - - + + + ); +/** + * Logo: The full "Waras" brand mark + * Combines the geometric icon with clean, high-impact typography. + */ export const Logo = (props: React.ComponentProps<"svg">) => ( - - - - - - - - - - -); + + {/* Stylized 'W' Icon Element */} + + + + + {/* Typography for "aras" */} + + aras + + +); \ No newline at end of file