Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 85b0fd12ed | |||
| 0fbba60f21 | |||
| c43e58fff2 | |||
| 76ac2e2dd1 | |||
| 6d7806fee1 | |||
| f8ae74be41 | |||
| 13a245b191 | |||
| 26dd2633fd | |||
| 74ead6c3b7 |
@@ -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 { DM_Sans } from "next/font/google";
|
import { DM_Sans } from "next/font/google";
|
||||||
|
import { Open_Sans } from "next/font/google";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -21,10 +22,16 @@ export const metadata: Metadata = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const dmSans = DM_Sans({
|
const dmSans = DM_Sans({
|
||||||
variable: "--font-dm-sans",
|
variable: "--font-dm-sans",
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
const inter = Inter({
|
||||||
|
variable: "--font-inter",
|
||||||
|
subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
@@ -34,7 +41,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${dmSans.variable} antialiased`}>
|
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/positive-confident-businessman-posing-outside_74855-1183.jpg", alt: "Positive confident businessman posing outside"},
|
src: "http://img.b2bpic.net/free-photo/positive-confident-businessman-posing-outside_74855-1183.jpg", alt: "Positive confident businessman posing outside"},
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/close-up-entrepreneur-with-corporate-job-looking-camera-business-office-portrait-young-man-preparing-work-planning-development-industry-with-technology-computer_482257-29387.jpg", alt: "Close up of entrepreneur with corporate job"},
|
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DpjaYBOhfrl7M1DcH4MDTrcnrQ/uploaded-1779557538441-tw496u2g.png", alt: "Close up of entrepreneur with corporate job"},
|
||||||
]}
|
]}
|
||||||
avatarText="Trusted by 150+ industry leaders"
|
avatarText="Trusted by 150+ industry leaders"
|
||||||
/>
|
/>
|
||||||
@@ -103,7 +103,7 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "m1", value: "150+", title: "Projects Completed", items: [
|
id: "m1", value: "20+", title: "Projects Completed", items: [
|
||||||
"Successfully delivered websites", "High-conversion platforms", "Long-term partners"],
|
"Successfully delivered websites", "High-conversion platforms", "Long-term partners"],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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-dm-sans), 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;
|
||||||
|
|||||||
@@ -13,12 +13,12 @@
|
|||||||
--background: #f5f5f5;
|
--background: #f5f5f5;
|
||||||
--card: #ffffff;
|
--card: #ffffff;
|
||||||
--foreground: #000000;
|
--foreground: #000000;
|
||||||
--primary-cta: #e5dfcd;
|
--primary-cta: #e9b310;
|
||||||
--primary-cta-text: #f5f5f5;
|
--primary-cta-text: #f5f5f5;
|
||||||
--secondary-cta: #000000;
|
--secondary-cta: #000000;
|
||||||
--secondary-cta-text: #1c1c1c;
|
--secondary-cta-text: #1c1c1c;
|
||||||
--accent: #b8860b;
|
--accent: #0f0bb8;
|
||||||
--background-accent: #8b6914;
|
--background-accent: #13259e;
|
||||||
|
|
||||||
/* 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