aboutsummaryrefslogtreecommitdiff
path: root/app/services
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2023-07-17 15:08:57 -0400
committerAndrew Lee <alee14498@protonmail.com>2023-07-17 15:08:57 -0400
commitddbe4fa61425f6a871a23238ce15a0929e201e6e (patch)
treec1d5c2a0674bcbf2cf79180445d8d26518b7009d /app/services
parent8fbaca0d8ec9dc1323facb7f4c0029e32cfe5223 (diff)
downloadalure-website-ddbe4fa61425f6a871a23238ce15a0929e201e6e.tar.gz
alure-website-ddbe4fa61425f6a871a23238ce15a0929e201e6e.tar.bz2
alure-website-ddbe4fa61425f6a871a23238ce15a0929e201e6e.zip
Modularizing certain elements; Working information section
Diffstat (limited to 'app/services')
-rw-r--r--app/services/page.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/services/page.js b/app/services/page.js
new file mode 100644
index 0000000..3e0044d
--- /dev/null
+++ b/app/services/page.js
@@ -0,0 +1,14 @@
+import Header from "@/components/Header";
+
+export const metadata = {
+ title: 'Services',
+ description: 'Information whether its safe to travel to other countries',
+}
+
+export default function Services() {
+ return (
+ <main className="flex flex-col">
+ <Header title={metadata.title} description={metadata.description} />
+ </main>
+ )
+}