Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9921098d53 | |||
| a76e029bdf | |||
| d20b4fadf4 | |||
| e7be4dba1f |
@@ -7,6 +7,7 @@ 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 { Archivo } from "next/font/google";
|
import { Archivo } from "next/font/google";
|
||||||
|
import { Raleway } from "next/font/google";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -15,7 +16,11 @@ export const metadata: Metadata = {
|
|||||||
description: 'Elite janitorial and cleaning consultancy services for corporate and residential spaces.',
|
description: 'Elite janitorial and cleaning consultancy services for corporate and residential spaces.',
|
||||||
};
|
};
|
||||||
|
|
||||||
const archivo = Archivo({ variable: "--font-archivo", subsets: ["latin"] });
|
|
||||||
|
const raleway = Raleway({
|
||||||
|
variable: "--font-raleway",
|
||||||
|
subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
@@ -25,7 +30,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${archivo.variable} antialiased`}>
|
<body className={`${raleway.variable} antialiased`}>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ export default function LandingPage() {
|
|||||||
background={{ variant: "gradient-bars" }}
|
background={{ variant: "gradient-bars" }}
|
||||||
title="Excellence in Cleaning & Consultancy."
|
title="Excellence in Cleaning & Consultancy."
|
||||||
description="De-cleaners Consult Pro Nig Ltd provides elite janitorial and cleaning consultancy services for corporate and residential spaces."
|
description="De-cleaners Consult Pro Nig Ltd provides elite janitorial and cleaning consultancy services for corporate and residential spaces."
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/volunteering-organization-holding-books-donations_23-2148687350.jpg"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXinbtJwICPxaCbHZbVHik8etu/uploaded-1777292734310-3a1hioh4.jpg"
|
||||||
imageAlt="Cleaning professionals at work"
|
imageAlt="Cleaning professionals at work"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
avatars={[
|
avatars={[
|
||||||
|
|||||||
@@ -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-archivo), sans-serif;
|
font-family: var(--font-raleway), 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-archivo), sans-serif;
|
font-family: var(--font-raleway), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #f5f4ef;
|
--background: #ffffff;
|
||||||
--card: #dad6cd;
|
--card: #f9f9f9;
|
||||||
--foreground: #2a2928;
|
--foreground: #120a00e6;
|
||||||
--primary-cta: #2a2928;
|
--primary-cta: #FF7B05;
|
||||||
--primary-cta-text: #f5f4ef;
|
--primary-cta-text: #ffffff;
|
||||||
--secondary-cta: #ecebea;
|
--secondary-cta: #f9f9f9;
|
||||||
--secondary-cta-text: #2a2928;
|
--secondary-cta-text: #120a00e6;
|
||||||
--accent: #ffffff;
|
--accent: #e2e2e2;
|
||||||
--background-accent: #c6b180;
|
--background-accent: #FF7B05;
|
||||||
|
|
||||||
/* 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);
|
||||||
|
|||||||
Reference in New Issue
Block a user