15 Commits

Author SHA1 Message Date
6197a2e0fa Update src/app/page.tsx 2026-04-21 15:00:46 +00:00
b12845a376 Merge version_3 into main
Merge version_3 into main
2026-04-21 14:57:03 +00:00
d0fa597e31 Update src/app/page.tsx 2026-04-21 14:57:00 +00:00
f3f2320416 Switch to version 1: modified src/app/styles/variables.css 2026-04-21 06:38:54 +00:00
6890aac3ec Switch to version 1: modified src/app/styles/base.css 2026-04-21 06:38:54 +00:00
bd697d0c7b Switch to version 1: modified src/app/page.tsx 2026-04-21 06:38:53 +00:00
1fc3437c4a Switch to version 1: modified src/app/layout.tsx 2026-04-21 06:38:53 +00:00
e2d6181b59 Merge version_2 into main
Merge version_2 into main
2026-04-21 06:36:21 +00:00
a65732bbb4 Merge version_2 into main
Merge version_2 into main
2026-04-21 06:35:41 +00:00
a35c9d7493 Merge version_2 into main
Merge version_2 into main
2026-04-21 06:35:10 +00:00
02bf149dbd Merge version_2 into main
Merge version_2 into main
2026-04-21 06:34:37 +00:00
e4e3ab1c5e Merge version_2 into main
Merge version_2 into main
2026-04-21 06:34:07 +00:00
0c5a664132 Merge version_2 into main
Merge version_2 into main
2026-04-21 06:29:22 +00:00
450685c223 Merge version_2 into main
Merge version_2 into main
2026-04-21 06:28:54 +00:00
68d76ca85c Merge version_2 into main
Merge version_2 into main
2026-04-21 06:26:23 +00:00
4 changed files with 10 additions and 10 deletions

View File

@@ -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

View File

@@ -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" },

View File

@@ -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;
} }

View File

@@ -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;