diff --git a/apps/web/src/app/(companies-list)/layout.tsx b/apps/web/src/app/(companies-list)/layout.tsx
index 8d09661..72e1e62 100644
--- a/apps/web/src/app/(companies-list)/layout.tsx
+++ b/apps/web/src/app/(companies-list)/layout.tsx
@@ -1,4 +1,5 @@
import CompaniesHeader from "@/components/CompaniesHeader";
+import { CompaniesListSkeleton } from "@/components/CompaniesListSkeleton";
import Footer from "@/components/Footer";
import { Skeleton } from "@/components/ui/skeleton";
import { LayoutProps } from "@/lib/types";
@@ -24,11 +25,7 @@ const AppLoading = () => {
-
-
-
-
-
+
);
};
diff --git a/apps/web/src/app/category/[category]/layout.tsx b/apps/web/src/app/category/[category]/layout.tsx
index 1cc4567..0a13cfc 100644
--- a/apps/web/src/app/category/[category]/layout.tsx
+++ b/apps/web/src/app/category/[category]/layout.tsx
@@ -5,7 +5,7 @@ import { Suspense } from "react";
export default function CategoryPageLayout({ children }: LayoutProps) {
return (
<>
- Loading...}>{children}
+ {children}
>
);
diff --git a/apps/web/src/app/category/[category]/page.tsx b/apps/web/src/app/category/[category]/page.tsx
index 6017c0f..d9d7b79 100644
--- a/apps/web/src/app/category/[category]/page.tsx
+++ b/apps/web/src/app/category/[category]/page.tsx
@@ -1,5 +1,6 @@
import { Breadcrumb } from "@/components/Breadcrumb";
import CompaniesList from "@/components/CompaniesList";
+import { CompaniesListSkeleton } from "@/components/CompaniesListSkeleton";
import {
APP_URL,
defaultMetadata,
@@ -83,7 +84,7 @@ export default async function CategoryPage({
]}
/>
{category} Companies
-
+ }>
- Loading...}>{children}
+ {children}
>
);
diff --git a/apps/web/src/app/location/[location]/page.tsx b/apps/web/src/app/location/[location]/page.tsx
index ba2a545..95b323f 100644
--- a/apps/web/src/app/location/[location]/page.tsx
+++ b/apps/web/src/app/location/[location]/page.tsx
@@ -1,5 +1,6 @@
import { Breadcrumb } from "@/components/Breadcrumb";
import CompaniesList from "@/components/CompaniesList";
+import { CompaniesListSkeleton } from "@/components/CompaniesListSkeleton";
import {
APP_URL,
defaultMetadata,
@@ -84,7 +85,7 @@ export default async function LocationPage({
/>
Companies in {location}
-
+ }>
{
+ return (
+
+
+
+
+
+ );
+};