15 Commits

Author SHA1 Message Date
22790f80c5 Update src/app/page.tsx 2026-04-12 23:56:52 +00:00
6de5d9a0d9 Update src/app/page.tsx 2026-04-12 23:47:35 +00:00
38e46f998c Update src/app/page.tsx 2026-04-12 23:44:41 +00:00
21349962da Update theme colors 2026-04-12 23:27:28 +00:00
cd16778e6d Update theme colors 2026-04-12 23:27:01 +00:00
8a2e90d423 Update theme colors 2026-04-12 23:26:44 +00:00
ebabe28ade Update theme fonts 2026-04-12 23:25:55 +00:00
db354a5449 Update theme fonts 2026-04-12 23:25:55 +00:00
9b2e4bf14c Update theme fonts 2026-04-12 23:25:42 +00:00
5b2e31ab77 Update theme fonts 2026-04-12 23:25:42 +00:00
7bbd3c4367 Update theme colors 2026-04-12 23:24:01 +00:00
9b1ee9ee18 Update theme colors 2026-04-12 23:23:56 +00:00
d8fcaa4537 Update theme colors 2026-04-12 23:23:49 +00:00
6b5b095038 Update theme colors 2026-04-12 23:23:47 +00:00
1d059bc3b2 Update theme colors 2026-04-12 23:23:32 +00:00
4 changed files with 24 additions and 16 deletions

View File

@@ -7,6 +7,8 @@ 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 { Raleway } from "next/font/google"; import { Raleway } from "next/font/google";
import { Open_Sans } from "next/font/google";
import { Public_Sans } from "next/font/google";
@@ -20,8 +22,14 @@ export const metadata: Metadata = {
}, },
}; };
const raleway = Raleway({
variable: "--font-raleway",
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"], subsets: ["latin"],
}); });
@@ -33,7 +41,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${raleway.variable} antialiased`}> <body className={`${publicSans.variable} ${inter.variable} antialiased`}>
<Tag /> <Tag />
{children} {children}
<script <script

View File

@@ -86,8 +86,8 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
features={[ features={[
{ id: "1", title: "Structural Renovation", description: "Safe, engineered structural changes designed to open your space and enhance structural integrity.", tag: "Structural", imageSrc: "http://img.b2bpic.net/free-photo/close-view-young-worker-laying-floor-with-laminated-flooring-boards_231208-4218.jpg?_wi=1" }, { id: "1", title: "Structural Renovation", description: "Safe, engineered structural changes designed to open your space and enhance structural integrity.", tag: "Structural", imageSrc: "http://img.b2bpic.net/free-photo/close-view-young-worker-laying-floor-with-laminated-flooring-boards_231208-4218.jpg?_wi=1" },
{ id: "2", title: "Bespoke Carpentry", description: "Fine cabinetry, custom shelving, and hand-finished woodworking tailored to your unique interior style.", tag: "Design", imageSrc: "http://img.b2bpic.net/free-photo/still-life-wood-engraving-workshop_23-2149185418.jpg?_wi=1" }, { id: "2", title: "Custom Hand-finished wood ", description: "Fine quality wood, we use great wood from local wood manufactures from Vancouver. Suitable for any custom wood projects you desire.", tag: "Design", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CHI2gJhga5AhgHowMgWNKaWwi9/uploaded-1776038084038-hllgm1b8.jpg" },
{ id: "3", title: "System Modernization", description: "Comprehensive electrical, HVAC, and smart-home integration to bring your property into the current century.", tag: "Tech", imageSrc: "http://img.b2bpic.net/free-photo/hand-holding-smartphone-home_23-2150639946.jpg?_wi=1" }, { id: "3", title: "System Modernization", description: "Comprehensive painting, work with steady and close care with every part. Each specific paint job will be tailored to your liking, with many vas options of colors and designs. ", tag: "Painting ", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CHI2gJhga5AhgHowMgWNKaWwi9/uploaded-1776037475684-rlmkwvtz.webp" },
]} ]}
title="Our Craftsmanship" title="Our Craftsmanship"
description="Explore the range of high-end renovation services tailored for discerning property owners." description="Explore the range of high-end renovation services tailored for discerning property owners."

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-raleway), sans-serif; font-family: var(--font-inter), 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-raleway), sans-serif; font-family: var(--font-public-sans), sans-serif;
} }

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #f7f6f7; --background: #000000;
--card: #ffffff; --card: #0c0c0c;
--foreground: #25190c; --foreground: #ffffff;
--primary-cta: #ff6207; --primary-cta: #fa0f0f;
--primary-cta-text: #f7f6f7; --primary-cta-text: #ffffff;
--secondary-cta: #ffffff; --secondary-cta: #1960ff;
--secondary-cta-text: #25190c; --secondary-cta-text: #ffffff;
--accent: #ffce93; --accent: #535353;
--background-accent: #e8cfa8; --background-accent: #106EFB;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);