Compare commits

...

5 Commits

Author SHA1 Message Date
victorAnumudu e1000ce0db updated footer section 2025-06-27 20:10:41 +01:00
victorAnumudu c5d67ad79b social links navigates to new tab on clink 2025-03-31 17:53:02 +01:00
victorAnumudu 80d0f0b326 updated endpoint url in prod env 2025-03-20 19:10:50 +01:00
victorAnumudu ebba068098 chat script commented 2025-03-20 19:00:44 +01:00
ameye 8ad3e31f60 Merge branch 'myrefer-link-fix' of WrenchBoard/WrenchBoardMainSite2025 into master 2024-12-03 21:35:15 +00:00
3 changed files with 32 additions and 12 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
APP_PORT=9081
ESLINT_NO_DEV_ERRORS=true
NEXT_PUBLIC_AUX_ENDPOINT="https://apigate.lotus.g1.wrenchboard.com/en/wrench/api/v1"
NEXT_PUBLIC_USERS_ENDPOINT="https://apigate.lotus.g1.wrenchboard.com/en/wrench/api/v1"
NEXT_PUBLIC_AUX_ENDPOINT="https://apigate.nebula.g1.wrenchboard.com/en/wrench/api/v1"
NEXT_PUBLIC_USERS_ENDPOINT="https://apigate.nebula.g1.wrenchboard.com/en/wrench/api/v1"
NEXT_PUBLIC_SITE_NAME='WrenchBoard'
NEXT_PUBLIC_DASH_URL='https://users.wrenchboard.com'
+28 -8
View File
@@ -31,26 +31,25 @@ function FooterHomeOne({ className }) {
<Link href="/service">
Read More <i className="fal fa-arrow-right" />
</Link>
<div className="social mt-30">
{/* <div className="social mt-30">
<ul>
<li>
<a href={site.facebook_link}>
<a target='_blank' href={site.facebook_link}>
<i className="fab fa-facebook-f"/>
</a>
</li>
<li>
<a href={process.env.NEXT_PUBLIC_TWITTER_LINK}>
{/* <i className="fab fa-twitter" /> */}
<a target='_blank' href={process.env.NEXT_PUBLIC_TWITTER_LINK}>
<i className="fab fa-x-twitter"></i>
</a>
</li>
<li>
<a className="you" href={process.env.NEXT_PUBLIC_YOUTUBE_LINK}>
<a target='_blank' className="you" href={process.env.NEXT_PUBLIC_YOUTUBE_LINK}>
<i className="fab fa-youtube"></i>
</a>
</li>
</ul>
</div>
</div> */}
</div>
</div>
<div className="col-lg-2 col-md-6">
@@ -107,7 +106,7 @@ function FooterHomeOne({ className }) {
<i className="fal fa-envelope" /> {site.support_email}
</a>
</li>
<li>
{/* <li>
<a href="#">
<i className="fal fa-phone" /> 404-855-7966
</a>
@@ -116,9 +115,30 @@ function FooterHomeOne({ className }) {
<a href="#">
<i className="fal fa-map-marker-alt" />Atlanta, GA 30339
</a>
</li>
</li> */}
</ul>
</div>
<div className='footer-about-widget'>
<div className="social mt-30">
<ul>
<li>
<a target='_blank' href={site.facebook_link}>
<i className="fab fa-facebook-f"/>
</a>
</li>
<li>
<a target='_blank' href={process.env.NEXT_PUBLIC_TWITTER_LINK}>
<i className="fab fa-x-twitter"></i>
</a>
</li>
<li>
<a target='_blank' className="you" href={process.env.NEXT_PUBLIC_YOUTUBE_LINK}>
<i className="fab fa-youtube"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div className="row">
+2 -2
View File
@@ -36,7 +36,7 @@ export default function RootLayout({
{children}
<AcceptCookies />
</body>
<Script id='chat-support'>
{/* <Script id='chat-support'>
{`
var LHC_API = LHC_API || {};
LHC_API.args = {
@@ -62,7 +62,7 @@ export default function RootLayout({
s.parentNode.insertBefore(po, s);
})();
`}
</Script>
</Script> */}
</html>
);
}