diff --git a/app/contact-us/page.tsx b/app/contact-us/page.tsx
new file mode 100644
index 000000000..373a2e734
--- /dev/null
+++ b/app/contact-us/page.tsx
@@ -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 (
+
+
Contact Us
+
+
+ We'd love to hear from you. Please fill out the form below or contact
+ us using the information provided.
+
+
+
+
Contact Information
+
+ - Email: info@linconson.com
+ - Phone: (123) 456-7890
+ - Address: Your Business Address
+
+
+
+
+
Business Hours
+
+ - Monday - Friday: 9:00 AM - 6:00 PM
+ - Saturday: 10:00 AM - 4:00 PM
+ - Sunday: Closed
+
+
+
+
+ )
+}
diff --git a/app/data/Gloves.tsx b/app/data/Gloves.tsx
deleted file mode 100644
index 0a5741091..000000000
--- a/app/data/Gloves.tsx
+++ /dev/null
@@ -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,
- },
-}
diff --git a/app/data/Industrial.tsx b/app/data/Industrial.tsx
deleted file mode 100644
index 9f7f225c5..000000000
--- a/app/data/Industrial.tsx
+++ /dev/null
@@ -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,
- },
-}
diff --git a/app/layout.tsx b/app/layout.tsx
index bfaf9f5f3..99a3d30a4 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -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'
diff --git a/app/public/assets/drop-shirt-0.png b/app/public/assets/drop-shirt-0.png
deleted file mode 100644
index b698a83ed..000000000
Binary files a/app/public/assets/drop-shirt-0.png and /dev/null differ
diff --git a/app/public/assets/drop-shirt-1.png b/app/public/assets/drop-shirt-1.png
deleted file mode 100644
index 42aa8e48c..000000000
Binary files a/app/public/assets/drop-shirt-1.png and /dev/null differ
diff --git a/app/public/assets/drop-shirt-2.png b/app/public/assets/drop-shirt-2.png
deleted file mode 100644
index dc243dc02..000000000
Binary files a/app/public/assets/drop-shirt-2.png and /dev/null differ
diff --git a/app/public/assets/drop-shirt.png b/app/public/assets/drop-shirt.png
deleted file mode 100644
index b698a83ed..000000000
Binary files a/app/public/assets/drop-shirt.png and /dev/null differ
diff --git a/app/public/assets/home/icon-returns-light.svg b/app/public/assets/home/icon-returns-light.svg
deleted file mode 100644
index 80dc5d9a0..000000000
--- a/app/public/assets/home/icon-returns-light.svg
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
\ No newline at end of file
diff --git a/app/public/assets/lightweight-jacket-0.png b/app/public/assets/lightweight-jacket-0.png
deleted file mode 100644
index a62a0bd8f..000000000
Binary files a/app/public/assets/lightweight-jacket-0.png and /dev/null differ
diff --git a/app/public/assets/lightweight-jacket-1.png b/app/public/assets/lightweight-jacket-1.png
deleted file mode 100644
index fe2d70a39..000000000
Binary files a/app/public/assets/lightweight-jacket-1.png and /dev/null differ
diff --git a/app/public/assets/lightweight-jacket-2.png b/app/public/assets/lightweight-jacket-2.png
deleted file mode 100644
index 75cc22d7b..000000000
Binary files a/app/public/assets/lightweight-jacket-2.png and /dev/null differ
diff --git a/app/public/assets/navbar/carpet_tread.jpg b/app/public/assets/navbar/carpet_tread.jpg
deleted file mode 100644
index c3ffd8b3d..000000000
Binary files a/app/public/assets/navbar/carpet_tread.jpg and /dev/null differ
diff --git a/app/public/assets/navbar/flap_discs.jpg b/app/public/assets/navbar/flap_discs.jpg
deleted file mode 100644
index e0e6e4498..000000000
Binary files a/app/public/assets/navbar/flap_discs.jpg and /dev/null differ
diff --git a/app/public/assets/navbar/grinding_wheel.jpeg b/app/public/assets/navbar/grinding_wheel.jpeg
deleted file mode 100644
index 8883c1685..000000000
Binary files a/app/public/assets/navbar/grinding_wheel.jpeg and /dev/null differ
diff --git a/app/public/assets/navbar/grip_tape.jpeg b/app/public/assets/navbar/grip_tape.jpeg
deleted file mode 100644
index 086f922fe..000000000
Binary files a/app/public/assets/navbar/grip_tape.jpeg and /dev/null differ
diff --git a/app/public/assets/navbar/sanding_disc.jpeg b/app/public/assets/navbar/sanding_disc.jpeg
deleted file mode 100644
index 86002f987..000000000
Binary files a/app/public/assets/navbar/sanding_disc.jpeg and /dev/null differ
diff --git a/app/public/assets/navbar/tread_tape.jpg b/app/public/assets/navbar/tread_tape.jpg
deleted file mode 100755
index 7df42cec0..000000000
Binary files a/app/public/assets/navbar/tread_tape.jpg and /dev/null differ
diff --git a/app/public/assets/pdf/electric-pallet-stackers/LI-CBESX0−X.pdf b/app/public/assets/pdf/electric-pallet-stackers/LI-CBESX0−X.pdf
deleted file mode 100644
index ebad738ae..000000000
Binary files a/app/public/assets/pdf/electric-pallet-stackers/LI-CBESX0−X.pdf and /dev/null differ
diff --git a/app/public/assets/pdf/electric-pallet-stackers/LI-ESS35−15.pdf b/app/public/assets/pdf/electric-pallet-stackers/LI-ESS35−15.pdf
deleted file mode 100644
index b27ee45cc..000000000
Binary files a/app/public/assets/pdf/electric-pallet-stackers/LI-ESS35−15.pdf and /dev/null differ
diff --git a/app/public/assets/pdf/electric-pallet-trucks/LI-EPT-LI.pdf b/app/public/assets/pdf/electric-pallet-trucks/LI-EPT-LI.pdf
deleted file mode 100644
index 31d434cf9..000000000
Binary files a/app/public/assets/pdf/electric-pallet-trucks/LI-EPT-LI.pdf and /dev/null differ
diff --git a/app/public/assets/pdf/electric-pallet-trucks/LI-EPT.pdf b/app/public/assets/pdf/electric-pallet-trucks/LI-EPT.pdf
deleted file mode 100644
index 8cd3ff90e..000000000
Binary files a/app/public/assets/pdf/electric-pallet-trucks/LI-EPT.pdf and /dev/null differ
diff --git a/app/public/assets/pdf/electric-pallet-trucks/LI-EPTH.pdf b/app/public/assets/pdf/electric-pallet-trucks/LI-EPTH.pdf
deleted file mode 100644
index 861c99135..000000000
Binary files a/app/public/assets/pdf/electric-pallet-trucks/LI-EPTH.pdf and /dev/null differ
diff --git a/app/public/assets/pdf/forklifts/LI-EFLX-X.pdf b/app/public/assets/pdf/forklifts/LI-EFLX-X.pdf
deleted file mode 100644
index e7b8f10f0..000000000
Binary files a/app/public/assets/pdf/forklifts/LI-EFLX-X.pdf and /dev/null differ
diff --git a/app/public/assets/pdf/forklifts/LI-LEFLX-X.pdf b/app/public/assets/pdf/forklifts/LI-LEFLX-X.pdf
deleted file mode 100644
index d75f09cb8..000000000
Binary files a/app/public/assets/pdf/forklifts/LI-LEFLX-X.pdf and /dev/null differ
diff --git a/app/public/assets/pdf/manual-pallet-trucks/LI-HPT.pdf b/app/public/assets/pdf/manual-pallet-trucks/LI-HPT.pdf
deleted file mode 100644
index 06db9a702..000000000
Binary files a/app/public/assets/pdf/manual-pallet-trucks/LI-HPT.pdf and /dev/null differ
diff --git a/app/public/assets/pdf/manual-pallet-trucks/LI-HPTS.pdf b/app/public/assets/pdf/manual-pallet-trucks/LI-HPTS.pdf
deleted file mode 100644
index 9a95f8514..000000000
Binary files a/app/public/assets/pdf/manual-pallet-trucks/LI-HPTS.pdf and /dev/null differ
diff --git a/app/public/assets/pdf/manual-pallet-trucks/LI-HTPE.pdf b/app/public/assets/pdf/manual-pallet-trucks/LI-HTPE.pdf
deleted file mode 100644
index f5ed4e2fe..000000000
Binary files a/app/public/assets/pdf/manual-pallet-trucks/LI-HTPE.pdf and /dev/null differ
diff --git a/app/public/assets/pdf/manual-pallet-trucks/LI-HTPL.pdf b/app/public/assets/pdf/manual-pallet-trucks/LI-HTPL.pdf
deleted file mode 100644
index 6366d0de2..000000000
Binary files a/app/public/assets/pdf/manual-pallet-trucks/LI-HTPL.pdf and /dev/null differ
diff --git a/app/public/assets/t-shirt-0.png b/app/public/assets/t-shirt-0.png
deleted file mode 100644
index 80ad64dae..000000000
Binary files a/app/public/assets/t-shirt-0.png and /dev/null differ
diff --git a/app/public/assets/t-shirt-1.png b/app/public/assets/t-shirt-1.png
deleted file mode 100644
index bd3fab6a2..000000000
Binary files a/app/public/assets/t-shirt-1.png and /dev/null differ
diff --git a/app/public/assets/t-shirt-2.png b/app/public/assets/t-shirt-2.png
deleted file mode 100644
index eb591ef53..000000000
Binary files a/app/public/assets/t-shirt-2.png and /dev/null differ
diff --git a/app/public/assets/t-shirt-3.png b/app/public/assets/t-shirt-3.png
deleted file mode 100644
index ff3251696..000000000
Binary files a/app/public/assets/t-shirt-3.png and /dev/null differ
diff --git a/app/public/assets/t-shirt-4.png b/app/public/assets/t-shirt-4.png
deleted file mode 100644
index 8a908d7d1..000000000
Binary files a/app/public/assets/t-shirt-4.png and /dev/null differ
diff --git a/app/public/bg-products.svg b/app/public/bg-products.svg
deleted file mode 100644
index 2118c3277..000000000
--- a/app/public/bg-products.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
diff --git a/app/public/card.jpg b/app/public/card.jpg
deleted file mode 100644
index e54b7d57a..000000000
Binary files a/app/public/card.jpg and /dev/null differ
diff --git a/app/public/cursor-left.png b/app/public/cursor-left.png
deleted file mode 100644
index 3c292b044..000000000
Binary files a/app/public/cursor-left.png and /dev/null differ
diff --git a/app/public/cursor-right.png b/app/public/cursor-right.png
deleted file mode 100644
index e3b46de42..000000000
Binary files a/app/public/cursor-right.png and /dev/null differ
diff --git a/app/public/favicon.ico b/app/public/favicon.ico
deleted file mode 100644
index c4826c947..000000000
Binary files a/app/public/favicon.ico and /dev/null differ
diff --git a/app/public/favicon.png b/app/public/favicon.png
deleted file mode 100644
index 475e7011b..000000000
Binary files a/app/public/favicon.png and /dev/null differ
diff --git a/app/public/flag-en-us.svg b/app/public/flag-en-us.svg
deleted file mode 100644
index 5e77dee30..000000000
--- a/app/public/flag-en-us.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/app/public/flag-es-ar.svg b/app/public/flag-es-ar.svg
deleted file mode 100644
index 4d6ffc474..000000000
--- a/app/public/flag-es-ar.svg
+++ /dev/null
@@ -1,20 +0,0 @@
-
diff --git a/app/public/flag-es-co.svg b/app/public/flag-es-co.svg
deleted file mode 100644
index 618820393..000000000
--- a/app/public/flag-es-co.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
diff --git a/app/public/flag-es.svg b/app/public/flag-es.svg
deleted file mode 100644
index 5e8e8f08f..000000000
--- a/app/public/flag-es.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/app/public/logo-industrial.png b/app/public/logo-industrial.png
deleted file mode 100644
index 297919665..000000000
Binary files a/app/public/logo-industrial.png and /dev/null differ
diff --git a/app/public/logo.png b/app/public/logo.png
deleted file mode 100644
index 4fb24d073..000000000
Binary files a/app/public/logo.png and /dev/null differ
diff --git a/app/public/product-img-placeholder.svg b/app/public/product-img-placeholder.svg
deleted file mode 100644
index fbb43bb62..000000000
--- a/app/public/product-img-placeholder.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
diff --git a/app/public/site.webmanifest b/app/public/site.webmanifest
deleted file mode 100644
index 1bedecf58..000000000
--- a/app/public/site.webmanifest
+++ /dev/null
@@ -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"
- }
- ]
-}
\ No newline at end of file
diff --git a/app/public/slider-arrows.png b/app/public/slider-arrows.png
deleted file mode 100644
index 0740919c9..000000000
Binary files a/app/public/slider-arrows.png and /dev/null differ
diff --git a/app/public/vercel.svg b/app/public/vercel.svg
deleted file mode 100644
index c0a8ee464..000000000
--- a/app/public/vercel.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
diff --git a/app/public/videos/hero.mp4 b/app/public/videos/hero.mp4
deleted file mode 100644
index 0428394ce..000000000
Binary files a/app/public/videos/hero.mp4 and /dev/null differ
diff --git a/app/public/videos/test.mov b/app/public/videos/test.mov
deleted file mode 100755
index f8584b5ab..000000000
Binary files a/app/public/videos/test.mov and /dev/null differ
diff --git a/app/public/videos/test_1.mov b/app/public/videos/test_1.mov
deleted file mode 100644
index 1ff671c4c..000000000
Binary files a/app/public/videos/test_1.mov and /dev/null differ
diff --git a/app/assets/base.css b/assets/base.css
similarity index 100%
rename from app/assets/base.css
rename to assets/base.css
diff --git a/app/assets/chrome-bug.css b/assets/chrome-bug.css
similarity index 100%
rename from app/assets/chrome-bug.css
rename to assets/chrome-bug.css
diff --git a/app/assets/components.css b/assets/components.css
similarity index 100%
rename from app/assets/components.css
rename to assets/components.css
diff --git a/app/assets/main.css b/assets/main.css
similarity index 100%
rename from app/assets/main.css
rename to assets/main.css
diff --git a/components/layout/navbar/NavbarV2.tsx b/components/layout/navbar/NavbarV2.tsx
index 77fbf50c8..cf9f545cf 100644
--- a/components/layout/navbar/NavbarV2.tsx
+++ b/components/layout/navbar/NavbarV2.tsx
@@ -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
diff --git a/data/Gloves.tsx b/data/Gloves.tsx
index 13c950650..0a5741091 100644
--- a/data/Gloves.tsx
+++ b/data/Gloves.tsx
@@ -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,
diff --git a/data/Industrial.tsx b/data/Industrial.tsx
index c64521002..9f7f225c5 100644
--- a/data/Industrial.tsx
+++ b/data/Industrial.tsx
@@ -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: {
diff --git a/public/favicon.ico b/public/favicon.ico
deleted file mode 100644
index c4826c947..000000000
Binary files a/public/favicon.ico and /dev/null differ