8 Commits

Author SHA1 Message Date
2edbd700c0 Merge version_3 into main
Merge version_3 into main
2026-06-11 18:44:17 +00:00
c1284f5765 Update src/app/styles/base.css 2026-06-11 18:44:14 +00:00
49d0570a49 Update src/app/page.tsx 2026-06-11 18:44:14 +00:00
809bc2aa48 Update src/app/layout.tsx 2026-06-11 18:44:13 +00:00
eb5b048724 Merge version_2 into main
Merge version_2 into main
2026-06-11 18:41:53 +00:00
e66e6f92e7 Update src/app/styles/base.css 2026-06-11 18:41:50 +00:00
e702642934 Update src/app/page.tsx 2026-06-11 18:41:50 +00:00
d0f6189727 Merge version_1 into main
Merge version_1 into main
2026-06-11 18:37:51 +00:00
3 changed files with 19 additions and 15 deletions

View File

@@ -7,6 +7,8 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Montserrat } from "next/font/google";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
@@ -41,9 +43,12 @@ export const metadata: Metadata = {
},
};
const montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
export default function RootLayout({
@@ -54,7 +59,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${montserrat.variable} antialiased`}>
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -67,8 +67,8 @@ export default function LandingPage() {
{
text: "Learn More", href: "#about"},
]}
imageSrc="http://img.b2bpic.net/free-photo/courier-doing-jobs-logistics_23-2149229212.jpg"
imageAlt="Delivery van driving through a UK city street"
imageSrc="http://img.b2bpic.net/free-photo/courier-doing-jobs-logistics_23-2149229199.jpg"
imageAlt="Courier delivering parcels"
/>
</div>
@@ -183,8 +183,7 @@ export default function LandingPage() {
{
id: "q4", title: "What types of goods do you transport?", content: "We handle a wide range of goods, from documents and small parcels to pallets and larger consignments. We adhere to all regulatory guidelines for safe transport."},
]}
sideTitle="Common Questions"
sideDescription="Find quick answers to the most frequently asked questions about our B2B courier services."
sideTitle="Common Inquiries" sideDescription="Find quick answers to the most common inquiries about our B2B courier and logistics services. For further assistance, please reach out to our support team."
faqsAnimation="opacity"
/>
</div>
@@ -194,9 +193,9 @@ export default function LandingPage() {
useInvertedBackground={true}
background={{
variant: "plain"}}
tag="Contact Us"
title="Ready to Optimize Your Deliveries?"
description="Get in touch with our team today to discuss your specific B2B courier needs and receive a tailored quote. We're here to help your business thrive."
tag="Connect with Us"
title="Partner with UK Courier Solutions for Seamless Logistics"
description="Ready to enhance your business deliveries? Get in touch with our expert team today to discuss tailored B2B courier services and receive a personalized quote."
buttons={[
{
text: "Request a Quote", href: "/#contact"},
@@ -247,10 +246,10 @@ export default function LandingPage() {
},
]}
bottomLeftText="© 2024 UK Courier Solutions. All rights reserved."
bottomRightText="Built for reliable B2B logistics."
bottomRightText="Your Trusted Partner in B2B Logistics."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-montserrat), sans-serif;
font-family: var(--font-dm-sans), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-montserrat), sans-serif;
font-family: var(--font-manrope), sans-serif;
}