Compare commits

..

36 Commits

Author SHA1 Message Date
56710d6c3d Update src/app/page.tsx 2026-05-23 10:02:01 +00:00
7b4022a4b7 Update src/app/gallery/page.tsx 2026-05-23 10:02:00 +00:00
f7c31a84ec Merge version_29 into main
Merge version_29 into main
2026-05-23 09:58:58 +00:00
42622a863f Update src/app/page.tsx 2026-05-23 09:58:55 +00:00
5aedf27be4 Update src/app/gallery/page.tsx 2026-05-23 09:58:54 +00:00
5e63f0c69a Merge version_29 into main
Merge version_29 into main
2026-05-23 09:58:13 +00:00
507cf7631e Update src/app/page.tsx 2026-05-23 09:58:09 +00:00
7d3ee074e4 Update src/app/gallery/page.tsx 2026-05-23 09:58:09 +00:00
2b90eb6a0b Merge version_28 into main
Merge version_28 into main
2026-05-23 09:56:25 +00:00
7c990a2156 Update src/app/page.tsx 2026-05-23 09:56:22 +00:00
5260ba8ad3 Update src/app/gallery/page.tsx 2026-05-23 09:56:21 +00:00
16f7182325 Merge version_27 into main
Merge version_27 into main
2026-05-23 09:54:41 +00:00
ad001495bd Update src/app/page.tsx 2026-05-23 09:54:38 +00:00
23212fd5fb Merge version_26 into main
Merge version_26 into main
2026-05-23 09:49:14 +00:00
8aa2dccec1 Update src/app/gallery/page.tsx 2026-05-23 09:49:08 +00:00
e32f65e1d1 Merge version_25 into main
Merge version_25 into main
2026-05-23 09:47:52 +00:00
138473bbd8 Update src/app/gallery/page.tsx 2026-05-23 09:47:49 +00:00
57e90623be Merge version_24 into main
Merge version_24 into main
2026-05-23 09:46:10 +00:00
c26631bbdd Update src/app/gallery/page.tsx 2026-05-23 09:46:04 +00:00
d38d8dff1b Merge version_23 into main
Merge version_23 into main
2026-05-23 09:41:10 +00:00
6b54728f69 Update src/app/page.tsx 2026-05-23 09:41:07 +00:00
8cedb657d6 Update src/app/gallery/page.tsx 2026-05-23 09:41:07 +00:00
6a193f9871 Merge version_22 into main
Merge version_22 into main
2026-05-23 09:39:15 +00:00
fae56d8938 Update src/app/page.tsx 2026-05-23 09:39:12 +00:00
0cfc3ad0cc Update src/app/gallery/page.tsx 2026-05-23 09:39:12 +00:00
db370fe363 Merge version_21 into main
Merge version_21 into main
2026-05-23 09:37:24 +00:00
3eddb08283 Update src/app/page.tsx 2026-05-23 09:37:20 +00:00
b26c6f314e Update src/app/gallery/page.tsx 2026-05-23 09:37:20 +00:00
19ea07a95a Merge version_20 into main
Merge version_20 into main
2026-05-23 09:23:11 +00:00
674d415262 Update src/app/the-sir-james-transit-guarantee/page.tsx 2026-05-23 09:23:08 +00:00
e691c24a5e Update src/app/services/page.tsx 2026-05-23 09:23:08 +00:00
913b056bad Update src/app/page.tsx 2026-05-23 09:23:07 +00:00
f6a9e61066 Update src/app/how-it-works/page.tsx 2026-05-23 09:23:07 +00:00
a1db0eb872 Update src/app/contact/page.tsx 2026-05-23 09:23:07 +00:00
aaf69b4a41 Merge version_19 into main
Merge version_19 into main
2026-05-23 09:21:04 +00:00
18a12c512c Merge version_19 into main
Merge version_19 into main
2026-05-23 09:20:40 +00:00
6 changed files with 34 additions and 41 deletions

View File

@@ -12,7 +12,6 @@ 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" },
];

View File

@@ -4,9 +4,17 @@ 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 ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import { useState } from 'react';
export default function GalleryPage() {
const [galleryItems, setGalleryItems] = useState([
{ title: "Heavy Duty Loading", description: "Secure Logistics", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-foundation-containers-arrangement_23-2149705544.jpg?_wi=2" },
{ title: "Vehicle Securement", description: "Verified Standards", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Dyzp7sGs874KHVqcZpKRlG0BRH/uploaded-1779315072666-rnat9as3.jpg?_wi=2" },
{ title: "Industrial Machinery", description: "Handled Safely", imageSrc: "http://img.b2bpic.net/free-photo/forklift-operator-loading-cargo-while-working-warehouse-his-colleagues-are-background_637285-4210.jpg?_wi=2" },
{ title: "Bulk Inventory", description: "Real-time Tracking", imageSrc: "http://img.b2bpic.net/free-photo/logistics-means-transport-together-with-technological-futuristic-holograms_23-2151662913.jpg" }
]);
const navItems = [
{ name: "Services", id: "/services" },
{ name: "How It Works", id: "/how-it-works" },
@@ -16,13 +24,6 @@ export default function GalleryPage() {
{ 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"
@@ -44,23 +45,21 @@ export default function GalleryPage() {
/>
</div>
<div id="gallery" data-section="gallery" className="py-20">
<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"
textboxLayout="split"
useInvertedBackground={false}
products={galleryItems}
/>
<div id="gallery" data-section="gallery" className="py-24">
<FeatureCardSix
title="Our Logistics Gallery"
description="A look at our professional cargo handling services."
textboxLayout="split"
useInvertedBackground={false}
features={galleryItems}
/>
</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: "#" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "/terms" }] },
]}
bottomLeftText="© 2026 Sir James Delivery Company."
bottomRightText="Safe. Swift. Secure."
@@ -69,4 +68,4 @@ export default function GalleryPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -12,7 +12,6 @@ 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" },
];

View File

@@ -8,25 +8,25 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import { useState } from 'react';
export default function LandingPage() {
const [galleryItems] = useState([
{ title: "Heavy Duty Loading", description: "Securing goods for transit", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-foundation-containers-arrangement_23-2149705544.jpg?_wi=2" },
{ title: "Vehicle Securement", description: "Professional loading standards", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Dyzp7sGs874KHVqcZpKRlG0BRH/uploaded-1779315072666-rnat9as3.jpg?_wi=2" },
{ title: "Industrial Machinery", description: "Handled with precision", imageSrc: "http://img.b2bpic.net/free-photo/forklift-operator-loading-cargo-while-working-warehouse-his-colleagues-are-background_637285-4210.jpg?_wi=2" },
{ title: "Bulk Inventory", description: "Tracking every step", imageSrc: "http://img.b2bpic.net/free-photo/logistics-means-transport-together-with-technological-futuristic-holograms_23-2151662913.jpg?_wi=1" }
]);
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 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?_wi=1" }
];
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
@@ -64,7 +64,6 @@ 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"
@@ -136,14 +135,13 @@ export default function LandingPage() {
</div>
<div id="gallery" data-section="gallery" className="py-20">
<ProductCardTwo
<FeatureCardSix
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"
description="A free-flowing, spacious view of our premium packing and logistics standards."
textboxLayout="split"
useInvertedBackground={false}
products={galleryItems}
features={galleryItems}
containerClassName="max-w-7xl mx-auto px-8"
/>
</div>
@@ -151,7 +149,7 @@ export default function LandingPage() {
<FooterSimple
columns={[
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Services", href: "/services" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "/terms" }] },
]}
bottomLeftText="© 2026 Sir James Delivery Company."
bottomRightText="Safe. Swift. Secure."
@@ -160,4 +158,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -12,7 +12,6 @@ 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" },
];

View File

@@ -12,7 +12,6 @@ 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" },
];