Compare commits

...

18 Commits

Author SHA1 Message Date
1d7b952054 Update src/app/page.tsx 2026-05-23 10:11:01 +00:00
86e89ed5ec Update src/app/page.tsx 2026-05-23 10:10:34 +00:00
ae5ab3c17b Update src/app/gallery/page.tsx 2026-05-23 10:07:51 +00:00
2446f313a5 Merge version_31 into main
Merge version_31 into main
2026-05-23 10:06:28 +00:00
6d232fac11 Update src/app/gallery/page.tsx 2026-05-23 10:06:25 +00:00
5111b475fe Merge version_30 into main
Merge version_30 into main
2026-05-23 10:02:07 +00:00
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
2 changed files with 47 additions and 38 deletions

View File

@@ -4,9 +4,35 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterSimple from '@/components/sections/footer/FooterSimple'; import FooterSimple from '@/components/sections/footer/FooterSimple';
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import { useState, useEffect } from 'react';
export default function GalleryPage() { 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" }
]);
useEffect(() => {
const saved = localStorage.getItem('sir-james-gallery-items');
if (saved) {
try {
setGalleryItems(JSON.parse(saved));
} catch (e) {
console.error("Error loading gallery items", e);
}
}
}, []);
const handleFileUpload = (index: number, newImageUrl: string) => {
const updatedItems = [...galleryItems];
updatedItems[index].imageSrc = newImageUrl;
setGalleryItems(updatedItems);
localStorage.setItem('sir-james-gallery-items', JSON.stringify(updatedItems));
};
const navItems = [ const navItems = [
{ name: "Services", id: "/services" }, { name: "Services", id: "/services" },
{ name: "How It Works", id: "/how-it-works" }, { name: "How It Works", id: "/how-it-works" },
@@ -16,13 +42,6 @@ export default function GalleryPage() {
{ name: "Contact", id: "/contact" }, { name: "Contact", id: "/contact" },
]; ];
const galleryItems = [
{ 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" }
];
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="icon-arrow" defaultButtonVariant="icon-arrow"
@@ -44,28 +63,21 @@ export default function GalleryPage() {
/> />
</div> </div>
{galleryItems.map((item, index) => ( <div id="gallery" data-section="gallery" className="py-24">
<div key={index} id={`gallery-${index}`} data-section="gallery" className="py-24 border-b border-gray-100"> <FeatureCardSix
<FeatureCardOne title="Our Logistics Gallery"
title={item.title} description="A look at our professional cargo handling services."
description={item.description}
gridVariant="two-columns-alternating-heights"
animationType="slide-up"
textboxLayout="split" textboxLayout="split"
useInvertedBackground={false} useInvertedBackground={false}
features={[item]} features={galleryItems}
containerClassName="max-w-7xl mx-auto px-6"
gridClassName="gap-12"
cardClassName="min-h-[500px]"
/> />
</div> </div>
))}
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterSimple <FooterSimple
columns={[ columns={[
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Services", href: "/services" }] }, { 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." bottomLeftText="© 2026 Sir James Delivery Company."
bottomRightText="Safe. Swift. Secure." bottomRightText="Safe. Swift. Secure."

View File

@@ -8,9 +8,17 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour'; import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import { useState } from 'react';
export default function LandingPage() { 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 = [ const navItems = [
{ name: "Services", id: "/services" }, { name: "Services", id: "/services" },
{ name: "How It Works", id: "/how-it-works" }, { name: "How It Works", id: "/how-it-works" },
@@ -19,13 +27,6 @@ export default function LandingPage() {
{ name: "Contact", id: "/contact" }, { name: "Contact", id: "/contact" },
]; ];
const galleryItems = [
{ 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" }
];
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="icon-arrow" defaultButtonVariant="icon-arrow"
@@ -107,7 +108,7 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
features={[ features={[
{ id: "luxury", title: "Luxury & Essentials", author: "Fragile items", description: "Luxury goods are packed in reinforced, climate-controlled security crates.", tags: ["Watch", "Perfume"], imageSrc: "http://img.b2bpic.net/free-photo/high-angle-foundation-containers-arrangement_23-2149705544.jpg?_wi=2" }, { id: "luxury", title: "Luxury & Essentials", author: "Fragile items", description: "Luxury goods are packed in reinforced, climate-controlled security crates.", tags: ["Watch", "Perfume"], imageSrc: "http://img.b2bpic.net/free-photo/high-angle-foundation-containers-arrangement_23-2149705544.jpg?_wi=2" },
{ id: "auto", title: "Automotive Shipping", author: "Vehicle safety", description: "Vehicles are shipped via specialized container loading with strapping.", tags: ["SUV", "Sedan"], imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Dyzp7sGs874KHVqcZpKRlG0BRH/uploaded-1779315072666-rnat9as3.jpg?_wi=2" }, { id: "auto", title: "Automotive Shipping", author: "Vehicle safety", description: "Vehicles are shipped via specialized container loading with strapping.", tags: ["SUV", "Sedan"], imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Dyzp7sGs874KHVqcZpKRlG0BRH/uploaded-1779315072666-rnat9as3.jpg" },
{ id: "heavy", title: "Heavy Machinery", author: "Industrial gear", description: "Heavy machinery is handled with industrial forklifts and steel ties.", tags: ["Gym Gear", "Tools"], imageSrc: "http://img.b2bpic.net/free-photo/forklift-operator-loading-cargo-while-working-warehouse-his-colleagues-are-background_637285-4210.jpg?_wi=2" }, { id: "heavy", title: "Heavy Machinery", author: "Industrial gear", description: "Heavy machinery is handled with industrial forklifts and steel ties.", tags: ["Gym Gear", "Tools"], imageSrc: "http://img.b2bpic.net/free-photo/forklift-operator-loading-cargo-while-working-warehouse-his-colleagues-are-background_637285-4210.jpg?_wi=2" },
{ id: "general", title: "General Cargo", author: "Commercial bulk", description: "Commercial stock utilizes streamlined bulk palletizing options.", tags: ["Wholesale", "Stock"], imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Dyzp7sGs874KHVqcZpKRlG0BRH/tmp/hyper-realistic-picture-of-a-cargo-conta-1779315244636-c2b3304a.png" }, { id: "general", title: "General Cargo", author: "Commercial bulk", description: "Commercial stock utilizes streamlined bulk palletizing options.", tags: ["Wholesale", "Stock"], imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Dyzp7sGs874KHVqcZpKRlG0BRH/tmp/hyper-realistic-picture-of-a-cargo-conta-1779315244636-c2b3304a.png" },
]} ]}
@@ -134,17 +135,13 @@ export default function LandingPage() {
</div> </div>
<div id="gallery" data-section="gallery" className="py-20"> <div id="gallery" data-section="gallery" className="py-20">
<FeatureCardOne <FeatureCardSix
title="Professional Cargo Logistics" title="Professional Cargo Logistics"
description="A free-flowing, spacious view of our premium packing and logistics standards." description="A free-flowing, spacious view of our premium packing and logistics standards."
animationType="slide-up"
carouselMode="buttons"
gridVariant="bento-grid"
textboxLayout="split" textboxLayout="split"
useInvertedBackground={false} useInvertedBackground={false}
features={galleryItems} features={galleryItems}
containerClassName="max-w-7xl mx-auto px-8" containerClassName="max-w-7xl mx-auto px-8"
gridClassName="gap-16"
/> />
</div> </div>
@@ -152,7 +149,7 @@ export default function LandingPage() {
<FooterSimple <FooterSimple
columns={[ columns={[
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Services", href: "/services" }] }, { 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." bottomLeftText="© 2026 Sir James Delivery Company."
bottomRightText="Safe. Swift. Secure." bottomRightText="Safe. Swift. Secure."