aboutsummaryrefslogtreecommitdiff
path: root/app/visas/page.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/visas/page.js')
-rw-r--r--app/visas/page.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/visas/page.js b/app/visas/page.js
new file mode 100644
index 0000000..eb5ba3c
--- /dev/null
+++ b/app/visas/page.js
@@ -0,0 +1,16 @@
+import { Countries } from "./ListCountries";
+import Header from "../components/Header";
+
+export const metadata = {
+ title: 'Visas',
+ description: 'Information whether a country is required a visa or not. ',
+}
+
+export default async function TravelAdvisory(){
+ return (
+ <main className="flex flex-col">
+ <Header title={metadata.title} description={metadata.description} />
+ <Countries />
+ </main>
+ )
+}