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 { 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
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user