added footer section and hero section
This commit was merged in pull request #1.
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
"use client"
|
||||
import React, { useMemo } from 'react';
|
||||
import { Link } from 'react-router-dom';
|
||||
import Image from 'next/image';
|
||||
import logo from '../assets/images/wrenchboard-logo-text.png';
|
||||
import getConfig from '../../Config/config'; // './../../Config/config'
|
||||
|
||||
@@ -17,19 +16,24 @@ function FooterHomeOne({ className }) {
|
||||
<div className="footer-about-widget">
|
||||
<div className="logo">
|
||||
<a href="#">
|
||||
<img src={logo} alt="WrenchBoard" loading='eager' width={175} height={38} />
|
||||
<Image
|
||||
src={logo}
|
||||
width={'175'}
|
||||
height={'38'}
|
||||
alt=""
|
||||
/>
|
||||
</a>
|
||||
</div>
|
||||
<p>
|
||||
{`It is simple. You can set goals, task, or anything that needs to be done and reward accomplishment. WrenchBoard is the platform to connect opportunities. `}
|
||||
</p>
|
||||
<Link to="/service">
|
||||
<a href="/service">
|
||||
Read More <i className="fal fa-arrow-right" />
|
||||
</Link>
|
||||
</a>
|
||||
<div className="social mt-30">
|
||||
<ul>
|
||||
<li>
|
||||
<a to={site.facebook_link}>
|
||||
<a href={site.facebook_link}>
|
||||
<i className="fab fa-facebook-f" />
|
||||
</a>
|
||||
</li>
|
||||
@@ -48,19 +52,19 @@ function FooterHomeOne({ className }) {
|
||||
<h4 className="title">Company</h4>
|
||||
<ul>
|
||||
<li>
|
||||
<Link to="/about-us">About Us</Link>
|
||||
<a href="/about-us">About Us</a>
|
||||
</li>
|
||||
<li>
|
||||
<Link to="/service">Our Services</Link>
|
||||
<a href="/service">Our Services</a>
|
||||
</li>
|
||||
<li>
|
||||
<Link to="/use-cases">Use Cases</Link>
|
||||
<a href="/use-cases">Use Cases</a>
|
||||
</li>
|
||||
<li className='d-none'>
|
||||
<a target='_blank' href={process.env.REACT_APP_AGENT_LINK}>Agent</a>
|
||||
</li>
|
||||
<li>
|
||||
<Link to="/blog">Blog</Link>
|
||||
<a href="/blog">Blog</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
@@ -71,19 +75,19 @@ function FooterHomeOne({ className }) {
|
||||
<h4 className="title">Support</h4>
|
||||
<ul>
|
||||
<li>
|
||||
<Link to="/contact">Contact</Link>
|
||||
<a href="/contact">Contact</a>
|
||||
</li>
|
||||
<li>
|
||||
<Link to="/faq">Faqs</Link>
|
||||
<a href="/faq">Faqs</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://blog.wrenchboard.com/resources/">Resources</a>
|
||||
</li>
|
||||
<li>
|
||||
<Link to="/privacy">Privacy Policy</Link>
|
||||
<a href="/privacy">Privacy Policy</a>
|
||||
</li>
|
||||
<li>
|
||||
<Link to="/terms">Terms of use</Link>
|
||||
<a href="/terms">Terms of use</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user