Skip to content

Commit

Permalink
feat: favicon added & tab title
Browse files Browse the repository at this point in the history
  • Loading branch information
TavaresDylan committed Jul 26, 2023
1 parent 673977e commit 9e09632
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Vue</title>
</head>
Expand Down
3 changes: 3 additions & 0 deletions app/public/favicon.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 app/src/views/Contact.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
</div>
</template>

<script lang="js" setup>
<script lang="ts" setup>
import { onMounted } from "vue";
onMounted(() => {
Expand Down
1 change: 1 addition & 0 deletions app/src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ import Introducing from "../components/Introducing.vue";
import SubscriptionPricing from "../components/SubscriptionPricing.vue";
import Faq from "../components/Faq.vue";
import getImageUrl from "../utilities/imageLoader.js";
document.title = "Accueil";
</script>

<style scoped>
Expand Down
1 change: 1 addition & 0 deletions app/src/views/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@

<script lang="ts" setup>
import { ref } from "vue";
document.title = "Connexion";
const mail = ref("");
const password = ref("");
Expand Down
1 change: 1 addition & 0 deletions app/src/views/Notfound.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@

<script lang="ts" setup>
import getImageUrl from "../utilities/imageLoader.js";
document.title = "Page non trouvée";
</script>
1 change: 1 addition & 0 deletions app/src/views/OurProducts.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@

<script lang="ts" setup>
import TermCard from "../components/TermCard.vue";
document.title = "Nos produits";
</script>

<style lang="css" scoped>
Expand Down
1 change: 1 addition & 0 deletions app/src/views/Ourhistory.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@
import Team from "../components/Team.vue";
import SarahHistory from "../components/SarahHistory.vue";
import FightboxHistory from "../components/FightboxHistory.vue";
document.title = "Notre histoire";
</script>
2 changes: 2 additions & 0 deletions app/src/views/Signup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@
<script lang="ts" setup>
import { ref } from "vue";
document.title = "Inscription";
const form = ref<HTMLFormElement | null>(null);
const mail = ref<string>("");
const password = ref<string>("");
Expand Down
1 change: 1 addition & 0 deletions app/src/views/Subscriptions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@

<script lang="ts" setup>
import TermCard from "../components/TermCard.vue";
document.title = "Abonnements";
</script>

<style lang="css" scoped>
Expand Down

0 comments on commit 9e09632

Please sign in to comment.