diff --git a/src/app/page.tsx b/src/app/page.tsx
index 9a679af..d4d8a3e 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -2,6 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
+import { MessageCircle } from "lucide-react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
@@ -29,65 +30,36 @@ export default function LandingPage() {
@@ -98,27 +70,9 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
features={[
- {
- tag: "Speed",
- title: "Same Day Delivery",
- subtitle: "Urgent Solutions",
- description: "Get your items across the UK within hours. Fast, premium, and professional handling.",
- imageSrc: "http://img.b2bpic.net/free-photo/wrench-mobile-phone-shiny-pushing-professional_1134-1094.jpg",
- },
- {
- tag: "Schedule",
- title: "Next Day Delivery",
- subtitle: "Scheduled Logistics",
- description: "Plan ahead with our reliable next-day service. Perfect for scheduled business operations.",
- imageSrc: "http://img.b2bpic.net/free-vector/gradient-time-logo-collection_23-2148938719.jpg",
- },
- {
- tag: "Budget",
- title: "Same Week Delivery",
- subtitle: "Cost-Effective",
- description: "The most affordable way to move goods across the UK without compromising on quality.",
- imageSrc: "http://img.b2bpic.net/free-photo/red-delivery-car-deliver-express-shipping-fast-delivery-background-3d-rendering-illustration_56104-1910.jpg",
- },
+ { tag: "Speed", title: "Same Day Delivery", subtitle: "Urgent Solutions", description: "Get your items across the UK within hours. Fast, premium, and professional handling.", imageSrc: "http://img.b2bpic.net/free-photo/wrench-mobile-phone-shiny-pushing-professional_1134-1094.jpg" },
+ { tag: "Schedule", title: "Next Day Delivery", subtitle: "Scheduled Logistics", description: "Plan ahead with our reliable next-day service. Perfect for scheduled business operations.", imageSrc: "http://img.b2bpic.net/free-vector/gradient-time-logo-collection_23-2148938719.jpg" },
+ { tag: "Budget", title: "Same Week Delivery", subtitle: "Cost-Effective", description: "The most affordable way to move goods across the UK without compromising on quality.", imageSrc: "http://img.b2bpic.net/free-photo/red-delivery-car-deliver-express-shipping-fast-delivery-background-3d-rendering-illustration_56104-1910.jpg" },
]}
title="Professional Delivery Services"
description="Tailored solutions to get your goods where they need to be, right on time."
@@ -131,39 +85,9 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={true}
plans={[
- {
- id: "p1",
- badge: "Express",
- price: "£1.45/mile + £30",
- subtitle: "Same Day Delivery",
- features: [
- "Fastest routing",
- "Priority handling",
- "Live tracking",
- ],
- },
- {
- id: "p2",
- badge: "Balanced",
- price: "£1.35/mile + £30",
- subtitle: "Next Day Delivery",
- features: [
- "Standard priority",
- "Professional driver",
- "Fully insured",
- ],
- },
- {
- id: "p3",
- badge: "Economic",
- price: "£1.20/mile + £20",
- subtitle: "Same Week Delivery",
- features: [
- "Cost efficient",
- "Reliable scheduling",
- "UK-wide coverage",
- ],
- },
+ { id: "p1", badge: "Express", price: "£1.45/mile + £30", subtitle: "Same Day Delivery", features: ["Fastest routing", "Priority handling", "Live tracking"] },
+ { id: "p2", badge: "Balanced", price: "£1.35/mile + £30", subtitle: "Next Day Delivery", features: ["Standard priority", "Professional driver", "Fully insured"] },
+ { id: "p3", badge: "Economic", price: "£1.20/mile + £20", subtitle: "Same Week Delivery", features: ["Cost efficient", "Reliable scheduling", "UK-wide coverage"] },
]}
title="Transparent Pricing"
description="Premium transport services with clear, honest rates and zero hidden fees."
@@ -176,18 +100,9 @@ export default function LandingPage() {
title="Why Trust J Isaac Logistics"
description="We combine premium logistics standards with modern, high-speed delivery technology."
metrics={[
- {
- value: "24/7",
- title: "Support",
- },
- {
- value: "100%",
- title: "Reliability",
- },
- {
- value: "UK",
- title: "Coverage",
- },
+ { value: "24/7", title: "Support" },
+ { value: "100%", title: "Reliability" },
+ { value: "UK", title: "Coverage" },
]}
imageSrc="http://img.b2bpic.net/free-photo/courier-doing-jobs-logistics_23-2149229205.jpg"
mediaAnimation="slide-up"
@@ -198,17 +113,9 @@ export default function LandingPage() {
@@ -218,21 +125,9 @@ export default function LandingPage() {
title="Book Your Delivery"
description="Ready to get moving? Contact us today for a free quote."
inputs={[
- {
- name: "name",
- type: "text",
- placeholder: "Name",
- },
- {
- name: "email",
- type: "email",
- placeholder: "Email",
- },
- {
- name: "phone",
- type: "tel",
- placeholder: "Phone",
- },
+ { name: "name", type: "text", placeholder: "Name" },
+ { name: "email", type: "email", placeholder: "Email" },
+ { name: "phone", type: "tel", placeholder: "Phone" },
]}
imageSrc="http://img.b2bpic.net/free-photo/logistics-means-transport-together-with-technological-futuristic-holograms_23-2151662975.jpg"
/>
@@ -242,23 +137,7 @@ export default function LandingPage() {
@@ -266,4 +145,4 @@ export default function LandingPage() {
);
-}
+}
\ No newline at end of file