Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 32e5c27649 | |||
| 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 Tag from "@/tag/Tag";
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
import { Source_Sans_3 } from "next/font/google";
|
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 sourceSans3 = Source_Sans_3({
|
||||||
const playfair = Playfair_Display({ variable: "--font-playfair", subsets: ["latin"] });
|
variable: "--font-source-sans-3",
|
||||||
const inter = Inter({ variable: "--font-inter", subsets: ["latin"] });
|
subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
@@ -36,7 +36,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${playfair.variable} ${inter.variable} antialiased`}>
|
<body className={`${sourceSans3.variable} antialiased`}>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplitTestimonial
|
<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."
|
description="Trusted local roofing specialists delivering premium workmanship across Walsall and surrounding areas. 5.0 Rated Local Roofing Service. 24/7 Availability."
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{ name: "Adrian S.", handle: "Local Client", testimonial: "Friendly, professional and competitively priced. The standard of workmanship is first class.", rating: 5 },
|
{ 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"
|
title="A Simple, Professional Process"
|
||||||
tag="Our Process"
|
tag="Our Process"
|
||||||
metrics={[
|
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: "m2", value: "2", description: "Roof Inspection - We assess the issue properly" },
|
||||||
{ id: "m3", value: "3", description: "Clear Quote - No hidden costs, no surprises" },
|
{ id: "m3", value: "3", description: "Clear Quote - No hidden costs, no surprises" },
|
||||||
{ id: "m4", value: "4", description: "Expert Workmanship - Completed to the highest standard" },
|
{ id: "m4", value: "4", description: "Expert Workmanship - Completed to the highest standard" },
|
||||||
|
|||||||
@@ -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-inter), sans-serif;
|
font-family: var(--font-source-sans-3), 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-playfair), serif;
|
font-family: var(--font-source-sans-3), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #FFFFFF;
|
--background: #ffffff;
|
||||||
--card: #f9f9f9;
|
--card: #f9f9f9;
|
||||||
--foreground: #111111;
|
--foreground: #111111;
|
||||||
--primary-cta: #C8A96A;
|
--primary-cta: #C8A96A;
|
||||||
|
|||||||
Reference in New Issue
Block a user