Compare commits
28 Commits
version_16
...
version_37
| Author | SHA1 | Date | |
|---|---|---|---|
| 22790f80c5 | |||
| 6de5d9a0d9 | |||
| 38e46f998c | |||
| 21349962da | |||
| cd16778e6d | |||
| 8a2e90d423 | |||
| ebabe28ade | |||
| db354a5449 | |||
| 9b2e4bf14c | |||
| 5b2e31ab77 | |||
| 7bbd3c4367 | |||
| 9b1ee9ee18 | |||
| d8fcaa4537 | |||
| 6b5b095038 | |||
| 1d059bc3b2 | |||
| 98a98fd418 | |||
| 3aae795d49 | |||
| f7413c0c15 | |||
| 78d3443733 | |||
| b9fe3ce7a7 | |||
| 1180ad417c | |||
| 342f5454e6 | |||
| 8b5ab4e702 | |||
| 32242e7c35 | |||
| e5644273e4 | |||
| 9ed6e19188 | |||
| ff0d0cedf3 | |||
| 531765e285 |
@@ -7,6 +7,8 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
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"],
|
||||
});
|
||||
|
||||
@@ -33,7 +41,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${raleway.variable} antialiased`}>
|
||||
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -86,8 +86,8 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
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: "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: "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: "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 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"
|
||||
description="Explore the range of high-end renovation services tailored for discerning property owners."
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-raleway), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-raleway), sans-serif;
|
||||
font-family: var(--font-public-sans), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #0a0a0a;
|
||||
--card: #1a1a1a;
|
||||
--foreground: #fff5f5e6;
|
||||
--primary-cta: #ff7a7a;
|
||||
--primary-cta-text: #0a0a0a;
|
||||
--secondary-cta: #1a1a1a;
|
||||
--secondary-cta-text: #fff5f5e6;
|
||||
--accent: #737373;
|
||||
--background-accent: #737373;
|
||||
--background: #000000;
|
||||
--card: #0c0c0c;
|
||||
--foreground: #ffffff;
|
||||
--primary-cta: #fa0f0f;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #1960ff;
|
||||
--secondary-cta-text: #ffffff;
|
||||
--accent: #535353;
|
||||
--background-accent: #106EFB;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user