-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.vue
41 lines (33 loc) · 1.15 KB
/
app.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<script setup lang="ts">
</script>
<template>
<header id="header" class="fixed-top d-flex align-items-center header-transparent">
<div class="container d-flex justify-content-between align-items-center">
<div class="logo">
<h1 class="text-light"><NuxtLink to="/"><span>Circuit Breakers</span></NuxtLink></h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
</div>
<nav id="navbar" class="navbar">
<ul>
<li><NuxtLink class="" to="/">Home</NuxtLink></li>
<li><NuxtLink class="active" to="/aboutus">About</NuxtLink></li>
<!-- <li><NuxtLink to="/services">Services</NuxtLink></li> -->
<!-- <li><NuxtLink to="/portfolio">Portfolio</NuxtLink></li> -->
<li><NuxtLink to="/team">Team</NuxtLink></li>
<!-- <li><NuxtLink to="/blog">Blog</NuxtLink></li> -->
<!-- <li><NuxtLink to="/contact">Contact Us</NuxtLink></li> -->
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
</div>
</header><!-- End Header -->
<main>
<NuxtPage />
</main>
</template>
<style>
nav a {
margin-right: 4px;
}
</style>