Skip to content

Commit

Permalink
Merge pull request #1 from EnergySage/fe-fixes
Browse files Browse the repository at this point in the history
feat: es ui
  • Loading branch information
DejanStokic authored Sep 25, 2024
2 parents 8b6a1fb + 41c76c4 commit 97c383c
Show file tree
Hide file tree
Showing 69 changed files with 721 additions and 778 deletions.
4 changes: 2 additions & 2 deletions frontend/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Thunderbird Appointment Frontend
# Site Visit Scheduling Frontend

This is the frontend component of Thunderbird Appointment. It's written in VueJS with Vite.
This is the frontend component of Site Visit Scheduling. It's written in VueJS with Vite.

## Project setup

Expand Down
2 changes: 1 addition & 1 deletion frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8">
<link rel="icon" href="/appointment_logo.svg">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thunderbird Appointment</title>
<title>Site Visit Scheduling</title>
<script>
// handle theme color scheme
if (
Expand Down
94 changes: 15 additions & 79 deletions frontend/public/appointment_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion frontend/public/sitemap.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
https://appointment.day/
https://schedule-site-visit.dev/
6 changes: 3 additions & 3 deletions frontend/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -290,18 +290,18 @@ onMounted(async () => {
>
{{ notificationMessage }}
</site-notification>
<nav-bar v-if="isAuthenticated" :nav-items="navItems"/>
<nav-bar v-if="isAuthenticated && !route.meta?.noLayout" :nav-items="navItems"/>
<title-bar v-if="routeIsPublic"/>
<main
:class="{
'mx-4 min-h-full py-32 lg:mx-8': !routeIsHome && !routeIsPublic,
'!pt-24': routeIsHome || isAuthenticated,
'!pt-24': routeIsHome || (isAuthenticated && !route.meta?.noLayout),
'min-h-full': routeIsPublic && !routeHasModal,
}"
>
<router-view/>
</main>
<footer-bar/>
<footer-bar v-if="!route.meta?.noLayout"/>
</template>
<template v-else-if="router.hasRoute(route.name) && !routeIsPublic">
<not-authenticated-view/>
Expand Down
Binary file not shown.
Binary file removed frontend/src/assets/img/homepage-screenshot-2.png
Binary file not shown.
Binary file not shown.
Binary file removed frontend/src/assets/img/homepage-screenshot.png
Binary file not shown.
Loading

0 comments on commit 97c383c

Please sign in to comment.