adjust the file path

This commit is contained in:
karl 2025-03-28 12:56:12 -04:00
parent 8845f433f7
commit 2c1cfb6b38
61 changed files with 46 additions and 233 deletions

38
app/contact-us/page.tsx Normal file
View File

@ -0,0 +1,38 @@
import type { Metadata } from 'next'
export const metadata: Metadata = {
title: 'Contact Us',
description: 'Get in touch with us for any questions or inquiries.',
}
export default function ContactPage() {
return (
<div className="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8 py-12">
<h1 className="mb-8 text-5xl font-bold">Contact Us</h1>
<div className="prose max-w-none">
<p>
We'd love to hear from you. Please fill out the form below or contact
us using the information provided.
</p>
<div className="mt-8">
<h2 className="text-2xl font-semibold mb-4">Contact Information</h2>
<ul className="list-none space-y-2">
<li>Email: info@linconson.com</li>
<li>Phone: (123) 456-7890</li>
<li>Address: Your Business Address</li>
</ul>
</div>
<div className="mt-8">
<h2 className="text-2xl font-semibold mb-4">Business Hours</h2>
<ul className="list-none space-y-2">
<li>Monday - Friday: 9:00 AM - 6:00 PM</li>
<li>Saturday: 10:00 AM - 4:00 PM</li>
<li>Sunday: Closed</li>
</ul>
</div>
</div>
</div>
)
}

View File

@ -1,70 +0,0 @@
import LATEX_FOAM from '../images/gloves/top_navbar/latex_foam.jpeg'
import WRINKLED_FOAM from '../images/gloves/top_navbar/wrinkled_foam.jpeg'
import PU_COATED from '../images/gloves/top_navbar/pu_coated.jpeg'
import PU_CUT_RESISTANT from '../images/gloves/top_navbar/cut_resistant.jpeg'
import NITRILE_CUT_RESISTANT from '../images/gloves/top_navbar/nitrile_cut_resistant.jpeg'
import LATEX_CUT_RESISTANT from '../images/gloves/top_navbar/latex_cut_resistant.jpeg'
import NITRILE_COATED from '../images/gloves/top_navbar/nitrile_coated.jpeg'
import SPANDEX from '../images/gloves/top_navbar/spandex.jpeg'
import COTTON_LATEX from '../images/gloves/top_navbar/latex.jpeg'
import WINTER from '../images/gloves/top_navbar/winter.jpeg'
import LEATHER from '../images/gloves/top_navbar/leather.jpeg'
import LATEX_FOAM_CONTENT_IMAGE from '../images/gloves/content/latex_foam.jpeg'
import WRINKLED_FOAM_CONTENT_IMAGE from '../images/gloves/content/wrinkled_foam.jpeg'
import PU_COATED_CONTENT_IMAGE from '../images/gloves/content/pu_coated.jpeg'
import PU_CUT_RESISTANT_CONTENT_IMAGE from '../images/gloves/content/cut_resistant.jpeg'
import NITRILE_CUT_RESISTANT_CONTENT_IMAGE from '../images/gloves/content/nitrile_cut_resistant.jpeg'
import LATEX_CUT_RESISTANT_CONTENT_IMAGE from '../images/gloves/content/latex_cut_resistant.jpeg'
import NITRILE_COATED_CONTENT_IMAGE from '../images/gloves/content/nitrile_coated.jpeg'
import SPANDEX_CONTENT_IMAGE from '../images/gloves/content/spandex.jpeg'
import COTTON_LATEX_CONTENT_IMAGE from '../images/gloves/content/cotton_latex.jpeg'
import WINTER_CONTENT_IMAGE from '../images/gloves/content/winter.jpeg'
import LEATHER_CONTENT_IMAGE from '../images/gloves/content/leather.jpeg'
export const GLOVES_DATA = {
LATEX_FOAM: {
navbarImage: LATEX_FOAM,
contentImage: LATEX_FOAM_CONTENT_IMAGE,
},
WRINKLED_FOAM: {
navbarImage: WRINKLED_FOAM,
contentImage: WRINKLED_FOAM_CONTENT_IMAGE,
},
PU_COATED: {
navbarImage: PU_COATED,
contentImage: PU_COATED_CONTENT_IMAGE,
},
PU_CUT_RESISTANT: {
navbarImage: PU_CUT_RESISTANT,
contentImage: PU_CUT_RESISTANT_CONTENT_IMAGE,
},
NITRILE_CUT_RESISTANT: {
navbarImage: NITRILE_CUT_RESISTANT,
contentImage: NITRILE_CUT_RESISTANT_CONTENT_IMAGE,
},
LATEX_CUT_RESISTANT: {
navbarImage: LATEX_CUT_RESISTANT,
contentImage: LATEX_CUT_RESISTANT_CONTENT_IMAGE,
},
NITRILE_COATED: {
navbarImage: NITRILE_COATED,
contentImage: NITRILE_COATED_CONTENT_IMAGE,
},
SPANDEX: {
navbarImage: SPANDEX,
contentImage: SPANDEX_CONTENT_IMAGE,
},
COTTON_LATEX: {
navbarImage: COTTON_LATEX,
contentImage: COTTON_LATEX_CONTENT_IMAGE,
},
WINTER: {
navbarImage: WINTER,
contentImage: WINTER_CONTENT_IMAGE,
},
LEATHER: {
navbarImage: LEATHER,
contentImage: LEATHER_CONTENT_IMAGE,
},
}

View File

@ -1,24 +0,0 @@
import PALLET_TRUCKS from '../images/industrial/top_navbar/pallet_trucks.jpg'
import WAREHOUSE_RACKS from '../images/industrial/top_navbar/warehouse_racks.png'
import WAREHOUSE_ACCESSORIES from '../images/industrial/top_navbar/warehouse_acc.png'
import FORKLIFTS from '../images/industrial/top_navbar/forklifts.png'
import FENCES from '../images/industrial/top_navbar/fences.png'
export const INDUSTRIAL_DATA = {
PALLET_TRUCKS: {
navbarImage: PALLET_TRUCKS,
// contentImage: LATEX_FOAM_CONTENT_IMAGE,
},
WAREHOUSE_RACKS: {
navbarImage: WAREHOUSE_RACKS,
},
WAREHOUSE_ACCESSORIES: {
navbarImage: WAREHOUSE_ACCESSORIES,
},
FORKLIFTS: {
navbarImage: FORKLIFTS,
},
FENCES: {
navbarImage: FENCES,
},
}

View File

@ -7,7 +7,7 @@ import { getCart } from 'lib/shopify'
import { ReactNode } from 'react'
import { Toaster } from 'sonner'
import './globals.css'
import './assets/main.css'
import '@/assets/main.css'
import '../components/layout/navbar/Navbar.css'
import { baseUrl } from 'lib/utils'

Binary file not shown.

Before

Width:  |  Height:  |  Size: 154 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 254 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 239 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 154 KiB

View File

@ -1,55 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 112 96" style="enable-background:new 0 0 112 96;" xml:space="preserve">
<style type="text/css">
.st0{fill:url(#SVGID_1_);filter:url(#Adobe_OpacityMaskFilter);}
.st1{mask:url(#mask0_00000008146892463935838390000000023873743161470125_);}
.st2{opacity:0.1;}
.st3{fill:none;stroke:#111827;stroke-width:2;}
.st4{fill:none;stroke:#4F46E5;stroke-width:2;stroke-linecap:round;}
.st5{fill:#4F46E5;}
.st6{fill:#FFFFFF;stroke:#C9C9C9;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;}
.st7{fill:none;stroke:#C9C9C9;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;}
</style>
<defs>
<filter id="Adobe_OpacityMaskFilter" filterUnits="userSpaceOnUse" x="7" y="0" width="98" height="98">
<feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
</filter>
</defs>
<mask maskUnits="userSpaceOnUse" x="7" y="0" width="98" height="98" id="mask0_00000008146892463935838390000000023873743161470125_">
<radialGradient id="SVGID_1_" cx="-2457.4492" cy="514.7766" r="1" gradientTransform="matrix(4.225032e-15 69 72.9204 -4.465087e-15 -37481.7148 169612)" gradientUnits="userSpaceOnUse">
<stop offset="0.2319" style="stop-color:#C4C4C4"/>
<stop offset="0.7246" style="stop-color:#C4C4C4;stop-opacity:0"/>
</radialGradient>
<rect x="4" y="4" class="st0" width="104" height="88"/>
</mask>
<g class="st1">
<g class="st2">
<circle class="st3" cx="56" cy="49" r="40"/>
</g>
<g class="st2">
<circle class="st3" cx="56" cy="49" r="48"/>
</g>
<g class="st2">
<circle class="st3" cx="56" cy="49" r="32"/>
</g>
<g class="st2">
<circle class="st3" cx="56" cy="49" r="24"/>
</g>
<g class="st2">
<circle class="st3" cx="56" cy="49" r="16"/>
</g>
</g>
<path class="st4" d="M87.1,75c-3.5,4-7.9,7.1-13,9"/>
<path class="st5" d="M80.8,74.8l6.7-1.5c0.7-0.2,1.4,0.5,1.2,1.2l-1.5,6.7c-0.2,0.8-1.1,1-1.7,0.5l-5.2-5.2C79.7,76,80,75,80.8,74.8
z"/>
<path class="st4" d="M30,20c3.5-4,7.9-7.1,13-9"/>
<path class="st5" d="M36.4,20.2l-6.7,1.5c-0.7,0.2-1.4-0.5-1.2-1.2l1.5-6.7c0.2-0.8,1.1-1,1.7-0.5l5.2,5.2
C37.4,19,37.2,20,36.4,20.2z"/>
<path class="st6" d="M80.3,62.5v-25c0-0.7-0.4-1.4-1-1.8L57,23.2c-0.6-0.4-1.4-0.4-2,0L32.7,35.7c-0.6,0.4-1,1-1,1.8v25
c0,0.7,0.4,1.4,1,1.8L55,76.8c0.6,0.4,1.4,0.4,2,0l22.3-12.6C79.9,63.9,80.3,63.2,80.3,62.5z"/>
<polyline class="st7" points="80.1,36.5 56.2,50 31.9,36.5 "/>
<line class="st7" x1="56.2" y1="50" x2="56" y2="77.1"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 495 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 466 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 345 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 220 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 157 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 252 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 281 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 406 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 330 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 420 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 651 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 356 KiB

View File

@ -1,7 +0,0 @@
<svg width="48" height="46" viewBox="0 0 48 46" fill="none" xmlns="http://www.w3.org/2000/svg">
<line opacity="0.1" x1="9.41421" y1="8" x2="21" y2="19.5858" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<line opacity="0.1" x1="1" y1="-1" x2="17.3848" y2="-1" transform="matrix(-0.707107 0.707107 0.707107 0.707107 40 8)" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<line opacity="0.1" x1="1" y1="-1" x2="17.3848" y2="-1" transform="matrix(0.707107 -0.707107 -0.707107 -0.707107 8 38)" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<line opacity="0.1" x1="38.5858" y1="38" x2="27" y2="26.4142" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

Before

Width:  |  Height:  |  Size: 797 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 848 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 535 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><circle cx="256" cy="256" r="256" fill="#f0f0f0"/><g fill="#d80027"><path d="M244.87 256H512c0-23.106-3.08-45.49-8.819-66.783H244.87V256zM244.87 122.435h229.556a257.35 257.35 0 00-59.07-66.783H244.87v66.783zM256 512c60.249 0 115.626-20.824 159.356-55.652H96.644C140.374 491.176 195.751 512 256 512zM37.574 389.565h436.852a254.474 254.474 0 0028.755-66.783H8.819a254.474 254.474 0 0028.755 66.783z"/></g><path d="M118.584 39.978h23.329l-21.7 15.765 8.289 25.509-21.699-15.765-21.699 15.765 7.16-22.037a257.407 257.407 0 00-49.652 55.337h7.475l-13.813 10.035a255.58 255.58 0 00-6.194 10.938l6.596 20.301-12.306-8.941a253.567 253.567 0 00-8.372 19.873l7.267 22.368h26.822l-21.7 15.765 8.289 25.509-21.699-15.765-12.998 9.444A258.468 258.468 0 000 256h256V0c-50.572 0-97.715 14.67-137.416 39.978zm9.918 190.422l-21.699-15.765L85.104 230.4l8.289-25.509-21.7-15.765h26.822l8.288-25.509 8.288 25.509h26.822l-21.7 15.765 8.289 25.509zm-8.289-100.083l8.289 25.509-21.699-15.765-21.699 15.765 8.289-25.509-21.7-15.765h26.822l8.288-25.509 8.288 25.509h26.822l-21.7 15.765zM220.328 230.4l-21.699-15.765L176.93 230.4l8.289-25.509-21.7-15.765h26.822l8.288-25.509 8.288 25.509h26.822l-21.7 15.765 8.289 25.509zm-8.289-100.083l8.289 25.509-21.699-15.765-21.699 15.765 8.289-25.509-21.7-15.765h26.822l8.288-25.509 8.288 25.509h26.822l-21.7 15.765zm0-74.574l8.289 25.509-21.699-15.765-21.699 15.765 8.289-25.509-21.7-15.765h26.822l8.288-25.509 8.288 25.509h26.822l-21.7 15.765z" fill="#0052b4"/></svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 14 KiB

View File

@ -1,10 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="24" height="24">
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.5144 6C19.5212 2.84625 16.0064 0.75 11.9999 0.75C7.99335 0.75 4.47848 2.84625 2.48535 6H2.4855C1.38787 7.737 0.75 9.79313 0.75 12C0.75 14.2069 1.38787 16.263 2.4855 18H2.48535C4.47848 21.1537 7.99335 23.25 11.9999 23.25C16.0064 23.25 19.5212 21.1537 21.5144 18H21.5145C22.6121 16.263 23.25 14.2069 23.25 12C23.25 9.79313 22.6121 7.737 21.5145 6H21.5144Z" fill="#B4D7EE"/>
</mask>
<g mask="url(#mask0)">
<rect x="-2" y="-1" width="27" height="14" fill="#FCD116"/>
<rect x="-2" y="13" width="27" height="6" fill="#003893"/>
<rect x="-2" y="19" width="27" height="6" fill="#CE1126"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 840 B

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 256c0 31.314 5.633 61.31 15.923 89.043L256 367.304l240.077-22.261C506.367 317.31 512 287.314 512 256s-5.633-61.31-15.923-89.043L256 144.696 15.923 166.957C5.633 194.69 0 224.686 0 256z" fill="#ffda44"/><g fill="#d80027"><path d="M496.077 166.957C459.906 69.473 366.071 0 256 0S52.094 69.473 15.923 166.957h480.154zM15.923 345.043C52.094 442.527 145.929 512 256 512s203.906-69.473 240.077-166.957H15.923z"/></g></svg>

Before

Width:  |  Height:  |  Size: 490 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

View File

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800">
<defs/>
<g fill="none" fill-rule="nonzero">
<path fill="#EAEAEA" d="M0 0h800v800H0z"/>
<path fill="#FFF" d="M366.333 365.833c0 5.695-1.993 10.535-5.979 14.521-3.986 3.986-8.826 5.98-14.52 5.98-5.695 0-10.535-1.994-14.522-5.98-3.986-3.986-5.979-8.826-5.979-14.52 0-5.695 1.993-10.535 5.98-14.522 3.986-3.986 8.826-5.979 14.52-5.979 5.695 0 10.535 1.993 14.521 5.98 3.986 3.986 5.98 8.826 5.98 14.52zm109.334 41v47.834H325.333v-20.5L359.5 400l17.083 17.083 54.667-54.666 44.417 44.416zm10.25-75.166H315.083c-.925 0-1.726.338-2.402 1.014-.676.676-1.014 1.477-1.014 2.402v129.834c0 .925.338 1.726 1.014 2.402.676.676 1.477 1.014 2.402 1.014h170.834c.925 0 1.726-.338 2.402-1.014.676-.676 1.014-1.477 1.014-2.402V335.083c0-.925-.338-1.726-1.014-2.402-.676-.676-1.477-1.014-2.402-1.014zM503 335.083v129.834c0 4.698-1.673 8.72-5.018 12.065-3.346 3.345-7.367 5.018-12.065 5.018H315.083c-4.698 0-8.72-1.673-12.065-5.018-3.345-3.346-5.018-7.367-5.018-12.065V335.083c0-4.698 1.673-8.72 5.018-12.065 3.346-3.345 7.367-5.018 12.065-5.018h170.834c4.698 0 8.72 1.673 12.065 5.018 3.345 3.346 5.018 7.367 5.018 12.065z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -1,17 +0,0 @@
{
"name": "Linconson",
"short_name": "Linconson",
"description": "Making The Accessories You Deserve!",
"display": "standalone",
"start_url": "/",
"theme_color": "#fff",
"background_color": "#000000",
"orientation": "portrait",
"icons": [
{
"src": "/favicon.png",
"type": "image/png",
"sizes": "128x128"
}
]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1,9 +0,0 @@
<svg width="89" height="20" viewBox="0 0 89 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11.5625 0L23.125 20H0L11.5625 0Z" fill="currentColor"/>
<path d="M49.875 10.625C49.875 7.40625 47.5 5.15625 44.0937 5.15625C40.6875 5.15625 38.3125 7.40625 38.3125 10.625C38.3125 13.7812 40.875 16.0937 44.4062 16.0937C46.3438 16.0937 48.0938 15.375 49.2188 14.0625L47.0938 12.8437C46.4375 13.5 45.4688 13.9062 44.4062 13.9062C42.8438 13.9062 41.5 13.0625 41.0312 11.7812L40.9375 11.5625H49.7812C49.8438 11.25 49.875 10.9375 49.875 10.625ZM40.9062 9.6875L40.9688 9.5C41.375 8.15625 42.5625 7.34375 44.0625 7.34375C45.5938 7.34375 46.75 8.15625 47.1562 9.5L47.2188 9.6875H40.9062Z" fill="currentColor"/>
<path d="M83.5313 10.625C83.5313 7.40625 81.1563 5.15625 77.75 5.15625C74.3438 5.15625 71.9688 7.40625 71.9688 10.625C71.9688 13.7812 74.5313 16.0937 78.0625 16.0937C80 16.0937 81.75 15.375 82.875 14.0625L80.75 12.8437C80.0938 13.5 79.125 13.9062 78.0625 13.9062C76.5 13.9062 75.1563 13.0625 74.6875 11.7812L74.5938 11.5625H83.4375C83.5 11.25 83.5313 10.9375 83.5313 10.625ZM74.5625 9.6875L74.625 9.5C75.0313 8.15625 76.2188 7.34375 77.7188 7.34375C79.25 7.34375 80.4063 8.15625 80.8125 9.5L80.875 9.6875H74.5625Z" fill="currentColor"/>
<path d="M68.5313 8.84374L70.6563 7.62499C69.6563 6.06249 67.875 5.18749 65.7188 5.18749C62.3125 5.18749 59.9375 7.43749 59.9375 10.6562C59.9375 13.875 62.3125 16.125 65.7188 16.125C67.875 16.125 69.6563 15.25 70.6563 13.6875L68.5313 12.4687C67.9688 13.4062 66.9688 13.9375 65.7188 13.9375C63.75 13.9375 62.4375 12.625 62.4375 10.6562C62.4375 8.68749 63.75 7.37499 65.7188 7.37499C66.9375 7.37499 67.9688 7.90624 68.5313 8.84374Z" fill="currentColor"/>
<path d="M88.2188 1.75H85.7188V15.8125H88.2188V1.75Z" fill="currentColor"/>
<path d="M40.1563 1.75H37.2813L31.7813 11.25L26.2813 1.75H23.375L31.7813 16.25L40.1563 1.75Z" fill="currentColor"/>
<path d="M57.8438 8.0625C58.125 8.0625 58.4062 8.09375 58.6875 8.15625V5.5C56.5625 5.5625 54.5625 6.75 54.5625 8.21875V5.5H52.0625V15.8125H54.5625V11.3437C54.5625 9.40625 55.9062 8.0625 57.8438 8.0625Z" fill="currentColor"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -16,8 +16,8 @@ import {
} from '@heroicons/react/24/outline'
// Product data
import { GLOVES_DATA } from 'data/Gloves'
import { INDUSTRIAL_DATA } from 'data/Industrial'
import { GLOVES_DATA } from '@/data/Gloves'
import { INDUSTRIAL_DATA } from '@/data/Industrial'
let _scrollTopValue: number | null = null

View File

@ -22,8 +22,6 @@ import COTTON_LATEX_CONTENT_IMAGE from '../images/gloves/content/cotton_latex.jp
import WINTER_CONTENT_IMAGE from '../images/gloves/content/winter.jpeg'
import LEATHER_CONTENT_IMAGE from '../images/gloves/content/leather.jpeg'
// app/images/gloves/content/cotton_latex.jpeg
export const GLOVES_DATA = {
LATEX_FOAM: {
navbarImage: LATEX_FOAM,

View File

@ -1,10 +1,8 @@
import PALLET_TRUCKS from 'images/industrial/top_navbar/pallet_trucks.jpg'
import WAREHOUSE_RACKS from 'images/industrial/top_navbar/warehouse_racks.png'
import WAREHOUSE_ACCESSORIES from 'images/industrial/top_navbar/warehouse_acc.png'
import FORKLIFTS from 'images/industrial/top_navbar/forklifts.png'
import FENCES from 'images/industrial/top_navbar/fences.png'
//data/Industrial.tsx
import PALLET_TRUCKS from '../images/industrial/top_navbar/pallet_trucks.jpg'
import WAREHOUSE_RACKS from '../images/industrial/top_navbar/warehouse_racks.png'
import WAREHOUSE_ACCESSORIES from '../images/industrial/top_navbar/warehouse_acc.png'
import FORKLIFTS from '../images/industrial/top_navbar/forklifts.png'
import FENCES from '../images/industrial/top_navbar/fences.png'
export const INDUSTRIAL_DATA = {
PALLET_TRUCKS: {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 535 B