Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6197a2e0fa | |||
| b12845a376 | |||
| d0fa597e31 | |||
| f3f2320416 | |||
| 6890aac3ec | |||
| bd697d0c7b | |||
| 1fc3437c4a | |||
| e2d6181b59 | |||
| a65732bbb4 | |||
| a35c9d7493 | |||
| 02bf149dbd | |||
| e4e3ab1c5e | |||
| 0c5a664132 | |||
| 450685c223 | |||
| 68d76ca85c |
@@ -7,7 +7,6 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Source_Sans_3 } from "next/font/google";
|
||||
import { Playfair_Display, Inter } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -24,9 +23,10 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
|
||||
const playfair = Playfair_Display({ variable: "--font-playfair", subsets: ["latin"] });
|
||||
const inter = Inter({ variable: "--font-inter", subsets: ["latin"] });
|
||||
const sourceSans3 = Source_Sans_3({
|
||||
variable: "--font-source-sans-3",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -36,7 +36,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${playfair.variable} ${inter.variable} antialiased`}>
|
||||
<body className={`${sourceSans3.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -42,7 +42,7 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitTestimonial
|
||||
title="Roofing Done Right — First Time, Every Time"
|
||||
title="Trusted Roofing Experts in Walsall — First Time, Every Time"
|
||||
description="Trusted local roofing specialists delivering premium workmanship across Walsall and surrounding areas. 5.0 Rated Local Roofing Service. 24/7 Availability."
|
||||
testimonials={[
|
||||
{ name: "Adrian S.", handle: "Local Client", testimonial: "Friendly, professional and competitively priced. The standard of workmanship is first class.", rating: 5 },
|
||||
@@ -123,7 +123,7 @@ export default function LandingPage() {
|
||||
title="A Simple, Professional Process"
|
||||
tag="Our Process"
|
||||
metrics={[
|
||||
{ id: "m1", value: "1", description: "Get in Touch - Call or request a quote online" },
|
||||
{ id: "m1", value: "1", description: "1. Instant Response - Request your free quote online or via phone for a fast, same-day expert assessment." },
|
||||
{ id: "m2", value: "2", description: "Roof Inspection - We assess the issue properly" },
|
||||
{ id: "m3", value: "3", description: "Clear Quote - No hidden costs, no surprises" },
|
||||
{ id: "m4", value: "4", description: "Expert Workmanship - Completed to the highest standard" },
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
font-family: var(--font-source-sans-3), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-playfair), serif;
|
||||
font-family: var(--font-source-sans-3), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #FFFFFF;
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #111111;
|
||||
--primary-cta: #C8A96A;
|
||||
|
||||
Reference in New Issue
Block a user