added env files and favicon

This commit was merged in pull request #9.
This commit is contained in:
victorAnumudu
2024-08-01 15:04:04 +01:00
parent 5c31cb017c
commit 7f5716dc99
16 changed files with 117 additions and 40 deletions
+5 -4
View File
@@ -1,6 +1,7 @@
import logo from '../assets/images/wrenchboard-logo-text.png';
import getConfig from "../../Config/config"; // './../../Config/config'
import Image from 'next/image';
import Link from 'next/link'
function Drawer({ drawer, action }) {
@@ -32,7 +33,7 @@ function Drawer({ drawer, action }) {
className="menu-item-has-children active"
>
<a href="/">Home</a>
<Link href="/">Home</Link>
</li>
<li
@@ -40,10 +41,10 @@ function Drawer({ drawer, action }) {
id="service"
className="menu-item-has-children active"
>
<a href="/service">Service</a>
<Link href="/service">Service</Link>
</li>
<li>
<a href="/about-us">About Us</a>
<Link href="/about-us">About Us</Link>
</li>
@@ -53,7 +54,7 @@ function Drawer({ drawer, action }) {
id="contact"
className="menu-item-has-children active"
>
<a href="/contact">Contact</a>
<Link href="/contact">Contact</Link>
</li>
</ul>
</div>