Compare commits

..

11 Commits

Author SHA1 Message Date
7abe20b467 Update src/app/loading-gallery/page.tsx 2026-05-23 09:16:45 +00:00
dc8f4a0a81 Update src/app/the-sir-james-transit-guarantee/page.tsx 2026-05-23 09:16:20 +00:00
ecd8145788 Update src/app/services/page.tsx 2026-05-23 09:16:20 +00:00
126022fe97 Update src/app/page.tsx 2026-05-23 09:16:19 +00:00
42eea3b1c7 Add src/app/loading-gallery/page.tsx 2026-05-23 09:16:19 +00:00
4208506b84 Update src/app/how-it-works/page.tsx 2026-05-23 09:16:18 +00:00
7783bf81d9 Update src/app/gallery/page.tsx 2026-05-23 09:16:18 +00:00
7db0769981 Update src/app/contact/page.tsx 2026-05-23 09:16:17 +00:00
08e4ee928a Merge version_17 into main
Merge version_17 into main
2026-05-23 09:09:06 +00:00
2469ba103e Update src/app/gallery/page.tsx 2026-05-23 09:09:02 +00:00
b14437ee99 Merge version_16 into main
Merge version_16 into main
2026-05-23 09:02:04 +00:00
7 changed files with 93 additions and 17 deletions

View File

@@ -12,6 +12,7 @@ export default function ContactPage() {
{ name: "How It Works", id: "/how-it-works" },
{ name: "Guarantee", id: "/the-sir-james-transit-guarantee" },
{ name: "Gallery", id: "/gallery" },
{ name: "Loading Gallery", id: "/loading-gallery" },
{ name: "Contact", id: "/contact" },
];
@@ -58,4 +59,4 @@ export default function ContactPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
export default function GalleryPage() {
const navItems = [
@@ -12,9 +12,17 @@ export default function GalleryPage() {
{ name: "How It Works", id: "/how-it-works" },
{ name: "Guarantee", id: "/the-sir-james-transit-guarantee" },
{ name: "Gallery", id: "/gallery" },
{ name: "Loading Gallery", id: "/loading-gallery" },
{ name: "Contact", id: "/contact" },
];
const galleryItems = [
{ id: "p1", brand: "Logistics", name: "Heavy Duty Loading", price: "Secure", rating: 5, reviewCount: "2026", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-foundation-containers-arrangement_23-2149705544.jpg?_wi=2" },
{ id: "p2", brand: "Logistics", name: "Vehicle Securement", price: "Verified", rating: 5, reviewCount: "2026", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Dyzp7sGs874KHVqcZpKRlG0BRH/uploaded-1779315072666-rnat9as3.jpg?_wi=2" },
{ id: "p3", brand: "Logistics", name: "Industrial Machinery", price: "Handled", rating: 5, reviewCount: "2026", imageSrc: "http://img.b2bpic.net/free-photo/forklift-operator-loading-cargo-while-working-warehouse-his-colleagues-are-background_637285-4210.jpg?_wi=2" },
{ id: "p4", brand: "Logistics", name: "Bulk Inventory", price: "Tracking", rating: 5, reviewCount: "2026", imageSrc: "http://img.b2bpic.net/free-photo/logistics-means-transport-together-with-technological-futuristic-holograms_23-2151662913.jpg" }
];
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
@@ -37,18 +45,14 @@ export default function GalleryPage() {
</div>
<div id="gallery" data-section="gallery" className="py-20">
<MetricCardEleven
<ProductCardTwo
title="Professional Cargo Logistics"
description="An alternating grid showcase of our premium packing, loading, and tracking standards for Dubai to Ghana freight."
gridVariant="two-columns-alternating-heights"
animationType="slide-up"
title="Cargo Packing Gallery"
description="Our professional packing standards ensure your goods travel from Dubai to Ghana with maximum protection."
textboxLayout="default"
textboxLayout="split"
useInvertedBackground={false}
metrics={[
{ id: "g1", value: "Secured", title: "Luxury Protection", description: "High-grade crates for luxury goods.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-foundation-containers-arrangement_23-2149705544.jpg?_wi=2" },
{ id: "g2", value: "Strapped", title: "Vehicle Securement", description: "Professional vehicle loading standards.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Dyzp7sGs874KHVqcZpKRlG0BRH/uploaded-1779315072666-rnat9as3.jpg?_wi=2" },
{ id: "g3", value: "Handled", title: "Industrial Gear", description: "Robust loading techniques for machinery.", imageSrc: "http://img.b2bpic.net/free-photo/forklift-operator-loading-cargo-while-working-warehouse-his-colleagues-are-background_637285-4210.jpg?_wi=2" },
{ id: "g4", value: "Inventory", title: "Bulk Logistics", description: "Organized inventory management and tracking.", imageSrc: "http://img.b2bpic.net/free-photo/logistics-means-transport-together-with-technological-futuristic-holograms_23-2151662913.jpg" }
]}
products={galleryItems}
/>
</div>
@@ -65,4 +69,4 @@ export default function GalleryPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -12,6 +12,7 @@ export default function HowItWorksPage() {
{ name: "How It Works", id: "/how-it-works" },
{ name: "Guarantee", id: "/the-sir-james-transit-guarantee" },
{ name: "Gallery", id: "/gallery" },
{ name: "Loading Gallery", id: "/loading-gallery" },
{ name: "Contact", id: "/contact" },
];
@@ -66,4 +67,4 @@ export default function HowItWorksPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -0,0 +1,66 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog';
export default function LoadingGalleryPage() {
const navItems = [
{ name: "Services", id: "/services" },
{ name: "How It Works", id: "/how-it-works" },
{ name: "Guarantee", id: "/the-sir-james-transit-guarantee" },
{ name: "Gallery", id: "/gallery" },
{ name: "Loading Gallery", id: "/loading-gallery" },
{ name: "Contact", id: "/contact" },
];
const loadingProducts = [
{ id: "1", brand: "Logistics", name: "Precision Loading", price: "$100", rating: 5, reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/forklift-operator-loading-cargo-while-working-warehouse-his-colleagues-are-background_637285-4210.jpg" },
{ id: "2", brand: "Logistics", name: "Heavy Duty Lifting", price: "$250", rating: 5, reviewCount: "32", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-foundation-containers-arrangement_23-2149705544.jpg" },
{ id: "3", brand: "Logistics", name: "Container Security", price: "$150", rating: 4, reviewCount: "28", imageSrc: "http://img.b2bpic.net/free-photo/technological-futuristic-holograms-logistics-means-transport_23-2151663056.jpg" },
];
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="medium"
sizing="largeSizeMediumTitles"
background="floatingGradient"
cardStyle="subtle-shadow"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={navItems}
brandName="Sir James Delivery"
/>
</div>
<div id="gallery" data-section="gallery" className="py-20">
<ProductCatalog
layout="section"
products={loadingProducts}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Services", href: "/services" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
]}
bottomLeftText="© 2026 Sir James Delivery Company."
bottomRightText="Safe. Swift. Secure."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -15,6 +15,7 @@ export default function LandingPage() {
{ name: "How It Works", id: "/how-it-works" },
{ name: "Guarantee", id: "/the-sir-james-transit-guarantee" },
{ name: "Gallery", id: "/gallery" },
{ name: "Loading Gallery", id: "/loading-gallery" },
{ name: "Contact", id: "/contact" },
];
@@ -55,6 +56,7 @@ export default function LandingPage() {
tag="Daily Shipments • Fully Insured • 100% Customs Cleared"
buttons={[
{ text: "Read Transit Guarantee", href: "/the-sir-james-transit-guarantee" },
{ text: "View Heavy-Duty Loading", href: "/loading-gallery" },
{ text: "Contact", href: "/contact" },
]}
imageSrc="http://img.b2bpic.net/free-photo/technological-futuristic-holograms-logistics-means-transport_23-2151663056.jpg"
@@ -138,4 +140,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -12,6 +12,7 @@ export default function ServicesPage() {
{ name: "How It Works", id: "/how-it-works" },
{ name: "Guarantee", id: "/the-sir-james-transit-guarantee" },
{ name: "Gallery", id: "/gallery" },
{ name: "Loading Gallery", id: "/loading-gallery" },
{ name: "Contact", id: "/contact" },
];
@@ -64,4 +65,4 @@ export default function ServicesPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -12,6 +12,7 @@ export default function TransitGuaranteePage() {
{ name: "How It Works", id: "/how-it-works" },
{ name: "Guarantee", id: "/the-sir-james-transit-guarantee" },
{ name: "Gallery", id: "/gallery" },
{ name: "Loading Gallery", id: "/loading-gallery" },
{ name: "Contact", id: "/contact" },
];
@@ -61,4 +62,4 @@ export default function TransitGuaranteePage() {
</ReactLenis>
</ThemeProvider>
);
}
}