aboutsummaryrefslogtreecommitdiff
path: root/src/views
diff options
context:
space:
mode:
authorJoop Kiefte <ikojba@gmail.com>2023-10-05 22:59:11 +0100
committerJoop Kiefte <ikojba@gmail.com>2023-10-05 22:59:11 +0100
commit6f0a2d521ea68c468fff304b93e6ee7b0613b366 (patch)
tree8d2225672ac35160c964a48cd5f261c0eac25c2f /src/views
Initialize web application via create-cloudflare CLI
Details: C3 = create-cloudflare@2.4.0 project name = bahaiprayers-json framework = vue framework cli = create-vue@3.7.5 package manager = bun@1.0.4 wrangler = wrangler@3.11.0 git = 2.42.0
Diffstat (limited to 'src/views')
-rw-r--r--src/views/AboutView.vue15
-rw-r--r--src/views/HomeView.vue9
2 files changed, 24 insertions, 0 deletions
diff --git a/src/views/AboutView.vue b/src/views/AboutView.vue
new file mode 100644
index 0000000..756ad2a
--- /dev/null
+++ b/src/views/AboutView.vue
@@ -0,0 +1,15 @@
+<template>
+ <div class="about">
+ <h1>This is an about page</h1>
+ </div>
+</template>
+
+<style>
+@media (min-width: 1024px) {
+ .about {
+ min-height: 100vh;
+ display: flex;
+ align-items: center;
+ }
+}
+</style>
diff --git a/src/views/HomeView.vue b/src/views/HomeView.vue
new file mode 100644
index 0000000..6bb706f
--- /dev/null
+++ b/src/views/HomeView.vue
@@ -0,0 +1,9 @@
+<script setup>
+import TheWelcome from '../components/TheWelcome.vue'
+</script>
+
+<template>
+ <main>
+ <TheWelcome />
+ </main>
+</template>