Skip to content

Commit c3e5be5

Browse files
authored
feat: update branding (#364)
1 parent ddb7db1 commit c3e5be5

File tree

7 files changed

+26
-3
lines changed

7 files changed

+26
-3
lines changed

resources/js/Components/Navbar.vue

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
<template>
22
<Disclosure as="nav" class="relative z-10 bg-white shadow" v-slot="{ open }">
33
<div class="container flex items-center justify-between h-16 gap-4 lg:gap-6 lg:my-2">
4-
<Link href="/" class="shrink-0">
5-
<Icon class="block max-w-36 max-h-10 text-primary-500" name="logo" />
4+
<Link href="/" class="flex divide-x shrink-0 divide-primary-200">
5+
<div class="pe-3">
6+
<Icon class="block max-w-28 max-w max-h-12" name="logo" />
7+
</div>
8+
<div class="ps-3">
9+
<Icon class="block max-w-28 max-h-12" name="bcr" />
10+
</div>
611
</Link>
712

813
<!-- Desktop main links -->
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<template>
2+
<div class="bg-primary-300">
3+
<div class="container flex items-center py-3 text-white">
4+
<span class="">Partener de implementare</span>
5+
<Icon class="inline-block max-w-24 max-h-6 ms-2" name="pont" />
6+
</div>
7+
</div>
8+
</template>
9+
10+
<script setup>
11+
import Icon from '@/Components/Icon.vue';
12+
</script>

resources/js/Layouts/DashboardLayout.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<template>
22
<div class="flex flex-col min-h-screen">
33
<Navbar />
4+
<PontBanner />
45

56
<Notification />
67
<OrganizationStatus />
@@ -68,6 +69,7 @@
6869
<script setup>
6970
import Navbar from '@/Components/Navbar.vue';
7071
import Footer from '@/Components/Footer.vue';
72+
import PontBanner from '@/Components/PontBanner.vue';
7173
import Notification from '@/Components/Notification.vue';
7274
import route from '@/Helpers/useRoute';
7375

resources/js/Layouts/PageLayout.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<template>
22
<div class="flex flex-col min-h-screen">
33
<Navbar />
4+
<PontBanner />
45

56
<Notification />
67

@@ -34,6 +35,7 @@
3435
import Head from '@/Components/Head.vue';
3536
import Navbar from '@/Components/Navbar.vue';
3637
import Footer from '@/Components/Footer.vue';
38+
import PontBanner from '@/Components/PontBanner.vue';
3739
import Notification from '@/Components/Notification.vue';
3840
import Icon from '@/Components/Icon.vue';
3941

resources/svg/bcr.svg

Lines changed: 1 addition & 0 deletions
Loading

resources/svg/logo.svg

Lines changed: 1 addition & 1 deletion
Loading

resources/svg/pont.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)