- Introduced a new plan for restructuring the account portal, resulting in over 60 file operations including the addition of new components and the deletion of outdated routes. - Updated various components to enhance user experience, including the addition of AccountRouteGuard and AccountDashboardPage. - Refactored routing paths to align with the new account structure, ensuring seamless navigation across billing, orders, and support sections. - Enhanced the checkout process by integrating new components and improving error handling for better user feedback. - Updated public-facing features to streamline contact and support functionalities, improving accessibility for users.
17 lines
474 B
TypeScript
17 lines
474 B
TypeScript
import { RouteLoading } from "@/components/molecules/RouteLoading";
|
|
import { ServerIcon } from "@heroicons/react/24/outline";
|
|
import { LoadingTable } from "@/components/atoms/loading-skeleton";
|
|
|
|
export default function AccountServicesLoading() {
|
|
return (
|
|
<RouteLoading
|
|
icon={<ServerIcon />}
|
|
title="Services"
|
|
description="View and manage your services"
|
|
mode="content"
|
|
>
|
|
<LoadingTable rows={6} columns={5} />
|
|
</RouteLoading>
|
|
);
|
|
}
|