Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c1284f5765 | |||
| 49d0570a49 | |||
| 809bc2aa48 | |||
| eb5b048724 | |||
| e66e6f92e7 | |||
| e702642934 | |||
| d0f6189727 |
@@ -7,6 +7,8 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
import { Montserrat } from "next/font/google";
|
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",
|
const manrope = Manrope({
|
||||||
subsets: ["latin"],
|
variable: "--font-manrope", subsets: ["latin"],
|
||||||
|
});
|
||||||
|
const dmSans = DM_Sans({
|
||||||
|
variable: "--font-dm-sans", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
@@ -54,7 +59,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${montserrat.variable} antialiased`}>
|
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -67,8 +67,8 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
text: "Learn More", href: "#about"},
|
text: "Learn More", href: "#about"},
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/courier-doing-jobs-logistics_23-2149229212.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/courier-doing-jobs-logistics_23-2149229199.jpg"
|
||||||
imageAlt="Delivery van driving through a UK city street"
|
imageAlt="Courier delivering parcels"
|
||||||
/>
|
/>
|
||||||
</div>
|
</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."},
|
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"
|
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."
|
||||||
sideDescription="Find quick answers to the most frequently asked questions about our B2B courier services."
|
|
||||||
faqsAnimation="opacity"
|
faqsAnimation="opacity"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -194,9 +193,9 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
background={{
|
background={{
|
||||||
variant: "plain"}}
|
variant: "plain"}}
|
||||||
tag="Contact Us"
|
tag="Connect with Us"
|
||||||
title="Ready to Optimize Your Deliveries?"
|
title="Partner with UK Courier Solutions for Seamless Logistics"
|
||||||
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."
|
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={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Request a Quote", href: "/#contact"},
|
text: "Request a Quote", href: "/#contact"},
|
||||||
@@ -247,10 +246,10 @@ export default function LandingPage() {
|
|||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
bottomLeftText="© 2024 UK Courier Solutions. All rights reserved."
|
bottomLeftText="© 2024 UK Courier Solutions. All rights reserved."
|
||||||
bottomRightText="Built for reliable B2B logistics."
|
bottomRightText="Your Trusted Partner in B2B Logistics."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-montserrat), sans-serif;
|
font-family: var(--font-dm-sans), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-montserrat), sans-serif;
|
font-family: var(--font-manrope), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user