added env files and favicon
This commit was merged in pull request #9.
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
import Link from 'next/link';
|
||||
import React from 'react';
|
||||
|
||||
function Navigation() {
|
||||
@@ -5,10 +6,10 @@ function Navigation() {
|
||||
<>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="/">Home</a>
|
||||
<Link href="/">Home</Link>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/about-us">About</a>
|
||||
<Link href="/about-us">About</Link>
|
||||
</li>
|
||||
{/* <li>
|
||||
<a href="#">
|
||||
|
||||
@@ -2,6 +2,7 @@ import React from 'react';
|
||||
import logo from '../../assets/images/wrenchboard-logo-text.png';
|
||||
import Navigation from './Navigation';
|
||||
import Image from 'next/image';
|
||||
import Link from 'next/link';
|
||||
|
||||
function Services({ action }) {
|
||||
|
||||
@@ -13,9 +14,9 @@ function Services({ action }) {
|
||||
<div className="row align-items-center">
|
||||
<div className="col-lg-2 col-md-4 col-sm-5 col-6 order-1 order-sm-1">
|
||||
<div className="wrench-logo-box">
|
||||
<a href="/">
|
||||
<Link href="/">
|
||||
<Image src={logo} alt="WrenchBoard" loading='eager' width="175" height="38" />
|
||||
</a>
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-lg-6 col-md-1 col-sm-1 order-3 order-sm-2">
|
||||
|
||||
Reference in New Issue
Block a user