From ca3ae0db6e8e3f2cf99423797c60f5c2cc66a780 Mon Sep 17 00:00:00 2001 From: Biswa Kalyan Bhuyan Date: Thu, 29 May 2025 20:57:31 +0530 Subject: feat: added the product page and enhanced the UI - added the product page where the product details is shown - enhanced the nav bar to handle the rendering - added the loading screen to the page - fixed the rendering method to the navigation-menu --- frontend/src/app/loading.tsx | 54 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 frontend/src/app/loading.tsx (limited to 'frontend/src/app/loading.tsx') diff --git a/frontend/src/app/loading.tsx b/frontend/src/app/loading.tsx new file mode 100644 index 0000000..56455c3 --- /dev/null +++ b/frontend/src/app/loading.tsx @@ -0,0 +1,54 @@ +import Image from "next/image"; + +export default function Loading() { + return ( +
+ {/* Background pattern */} +
+ + {/* Loading content */} +
+ {/* Logo with animation */} +
+
+ blcklst + blcklst +
+
+ + {/* Loading text - closer to logo */} +
+

+ not everyone gets blcklsted +

+ + {/* Loading dots */} +
+
+
+
+
+
+ + {/* Progress bar */} +
+
+
+
+
+ ); +} \ No newline at end of file -- cgit v1.2.3-59-g8ed1b