diff --git a/pages/index.vue b/pages/index.vue index 2fe632e..06ee4c6 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -17,6 +17,7 @@ useIntervalFn(() => (now.value = dayjs().tz("America/Los_Angeles")), 1000); const date = computed(() => now.value.format("MMMM D, YYYY")); const time = computed(() => now.value.format("h:mm")); const amPm = computed(() => now.value.format("a")); +const dayOfWeek = computed(() => now.value.format("d")); type Tide = { time: Dayjs; @@ -96,7 +97,16 @@ const currentCycle = computed(() => {

{{ time }}{{ amPm }}

-

{{ date }}

+

{{ date }}

+
+
+ {{ d }} +
+

Tide is {{ currentCycle.description }}