4 Commits

Author SHA1 Message Date
89d65904b9 Update src/app/styles/base.css 2026-03-05 02:57:25 +00:00
f1993a9bd1 Update src/app/page.tsx 2026-03-05 02:57:25 +00:00
71aba56c45 Update src/app/layout.tsx 2026-03-05 02:57:24 +00:00
3512d0ac98 Merge version_2 into main
Merge version_2 into main
2026-03-05 02:53:10 +00:00
3 changed files with 15 additions and 24 deletions

View File

@@ -1,17 +1,14 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google"; import { Poppins } from "next/font/google";
import "./globals.css"; import "./globals.css";
const geist = Geist({ const poppins = Poppins({
variable: "--font-geist-sans", subsets: ["latin"], variable: "--font-poppins", subsets: ["latin"],
}); weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Create Next App", description: "Generated by create next app"}; title: "Norfolk Plumbing - Emergency Plumbing Services", description: "Fast, reliable plumbing services across Norfolk. 24 hour emergency service. No fuss. No hidden costs."};
export default function RootLayout({ export default function RootLayout({
children, children,
@@ -20,7 +17,7 @@ export default function RootLayout({
}) { }) {
return ( return (
<html lang="en"> <html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}> <body className={`${poppins.variable} antialiased`}>
{children} {children}
<script <script

View File

@@ -162,31 +162,25 @@ export default function LandingPage() {
textboxLayout="default" textboxLayout="default"
animationType="slide-up" animationType="slide-up"
useInvertedBackground={false} useInvertedBackground={false}
gridVariant="uniform-all-items-equal" gridVariant="three-columns-all-equal-width"
testimonials={[ testimonials={[
{ {
id: "1", name: "Sarah Johnson", role: "Homeowner", company: "Norwich", rating: 5, id: "1", name: "Sarah Johnson", role: "Homeowner", company: "Norwich", rating: 5
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=1", imageAlt: "Sarah Johnson testimonial"
}, },
{ {
id: "2", name: "Michael Chen", role: "Landlord", company: "Norfolk Property", rating: 5, id: "2", name: "Michael Chen", role: "Landlord", company: "Norfolk Property", rating: 5
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=2", imageAlt: "Michael Chen testimonial"
}, },
{ {
id: "3", name: "Emily Rodriguez", role: "Business Owner", company: "Local Shop", rating: 5, id: "3", name: "Emily Rodriguez", role: "Business Owner", company: "Local Shop", rating: 5
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=3", imageAlt: "Emily Rodriguez testimonial"
}, },
{ {
id: "4", name: "David Kim", role: "Elderly Resident", company: "Norwich", rating: 5, id: "4", name: "David Kim", role: "Elderly Resident", company: "Norwich", rating: 5
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=4", imageAlt: "David Kim testimonial"
}, },
{ {
id: "5", name: "Jessica Brown", role: "Family Home Owner", company: "Norwich", rating: 5, id: "5", name: "Jessica Brown", role: "Family Home Owner", company: "Norwich", rating: 5
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=5", imageAlt: "Jessica Brown testimonial"
}, },
{ {
id: "6", name: "Robert Wilson", role: "Property Manager", company: "Norfolk Lettings", rating: 5, id: "6", name: "Robert Wilson", role: "Property Manager", company: "Norfolk Lettings", rating: 5
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg?_wi=6", imageAlt: "Robert Wilson testimonial"
}, },
]} ]}
/> />

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-poppins), 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-mulish), sans-serif; font-family: var(--font-poppins), sans-serif;
} }