aboutsummaryrefslogtreecommitdiff
path: root/app/services
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2023-07-17 20:42:50 -0400
committerAndrew Lee <alee14498@protonmail.com>2023-07-17 20:42:50 -0400
commitc4c55a93bc6af8b15f45225169758e08ff1b13cd (patch)
treebf7e7c4070e462e99bcea327588c323025b6a0bb /app/services
downloadsei-website-c4c55a93bc6af8b15f45225169758e08ff1b13cd.tar.gz
sei-website-c4c55a93bc6af8b15f45225169758e08ff1b13cd.tar.bz2
sei-website-c4c55a93bc6af8b15f45225169758e08ff1b13cd.zip
Initial rewrite
Diffstat (limited to 'app/services')
-rw-r--r--app/services/page.js50
1 files changed, 50 insertions, 0 deletions
diff --git a/app/services/page.js b/app/services/page.js
new file mode 100644
index 0000000..e33059a
--- /dev/null
+++ b/app/services/page.js
@@ -0,0 +1,50 @@
+import Header from "@/components/Header";
+
+export const metadata = {
+ title: 'Services',
+ description: 'Local services that we have here in Southeastern Islands',
+}
+
+export default function Services() {
+ return (
+ <main className="flex flex-col">
+ <Header title={metadata.title} description={metadata.description} />
+ <div>
+ <ul>
+ <li>
+ <div className="bg-center bg-no-repeat bg-[url('/regions/alee-isle.webp')] bg-gray-600 bg-blend-multiply">
+ <div className="sm:px-40 px-10 py-14 space-y-2">
+ <h1 className="font-medium sm:text-4xl text-3xl">Alure Post</h1>
+ <h2 className="text-xl">Local and international postal service</h2>
+ </div>
+ </div>
+ </li>
+ <li>
+ <div className="bg-center bg-no-repeat bg-[url('/regions/alee-isle.webp')] bg-gray-600 bg-blend-multiply">
+ <div className="sm:px-40 px-10 py-14 space-y-2">
+ <h1 className="font-medium sm:text-4xl text-3xl">ExploreAlure</h1>
+ <h2 className="text-xl">Tourism service</h2>
+ </div>
+ </div>
+ </li>
+ <li>
+ <div className="bg-center bg-no-repeat bg-[url('/regions/alee-isle.webp')] bg-gray-600 bg-blend-multiply">
+ <div className="sm:px-40 px-10 py-14 space-y-2">
+ <h1 className="font-medium sm:text-4xl text-3xl">MinePot</h1>
+ <h2 className="text-xl">International restaurant</h2>
+ </div>
+ </div>
+ </li>
+ <li>
+ <div className="bg-center bg-no-repeat bg-[url('/regions/alee-isle.webp')] bg-gray-600 bg-blend-multiply">
+ <div className="sm:px-40 px-10 py-14 space-y-2">
+ <h1 className="font-medium sm:text-4xl text-3xl">Intel Computer Shop</h1>
+ <h2 className="text-xl">International computer shop</h2>
+ </div>
+ </div>
+ </li>
+ </ul>
+ </div>
+ </main>
+ )
+}