diff --git a/client/package.json b/client/package.json
index 6841e30e..dbee44cd 100644
--- a/client/package.json
+++ b/client/package.json
@@ -58,6 +58,7 @@
"tailwindcss": "3.3.2",
"tailwindcss-animate": "^1.0.6",
"typescript": "5.1.3",
+ "vaul": "0.9.0",
"zod": "^3.21.4"
},
"devDependencies": {
diff --git a/client/src/app/countries/[slug]/page.tsx b/client/src/app/countries/[slug]/page.tsx
index ec9fc3ef..d01788e9 100644
--- a/client/src/app/countries/[slug]/page.tsx
+++ b/client/src/app/countries/[slug]/page.tsx
@@ -1,6 +1,7 @@
import { Metadata } from 'next';
import CountryDetailPanel from '@/containers/countries/detail/panel';
+import Panel from '@/containers/panel';
export const metadata: Metadata = {
title: 'AFoCO | Country detail',
@@ -8,5 +9,9 @@ export const metadata: Metadata = {
};
export default function CountryPage() {
- return ;
+ return (
+
+
+
+ );
}
diff --git a/client/src/app/countries/page.tsx b/client/src/app/countries/page.tsx
index b6fd9cba..6a5b3f7b 100644
--- a/client/src/app/countries/page.tsx
+++ b/client/src/app/countries/page.tsx
@@ -1,6 +1,7 @@
import { Metadata } from 'next';
import CountriesList from '@/containers/countries/list';
+import Panel from '@/containers/panel';
export const metadata: Metadata = {
title: 'AFoCO | Countries',
@@ -9,9 +10,11 @@ export const metadata: Metadata = {
export default function Countries() {
return (
-
-
Country Profile
-
-
+
+
+
Countries
+
+
+
);
}
diff --git a/client/src/app/datasets/page.tsx b/client/src/app/datasets/page.tsx
index 4f3e26ec..28620d91 100644
--- a/client/src/app/datasets/page.tsx
+++ b/client/src/app/datasets/page.tsx
@@ -1,6 +1,7 @@
import { Metadata } from 'next';
import Datasets from '@/containers/datasets';
+import Panel from '@/containers/panel';
export const metadata: Metadata = {
title: 'AFoCO | Datasets',
@@ -8,5 +9,9 @@ export const metadata: Metadata = {
};
export default function DatasetsPage() {
- return ;
+ return (
+
+
+
+ );
}
diff --git a/client/src/app/layout.tsx b/client/src/app/layout.tsx
index ae0e1644..8b6a33d7 100644
--- a/client/src/app/layout.tsx
+++ b/client/src/app/layout.tsx
@@ -56,8 +56,8 @@ export default function RootLayout({ children }: { children: React.ReactNode })
-
{children}
+ {children}