Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c6ebe8f124 | |||
| 7ed5748480 | |||
| f3a1bd56b3 | |||
| 5fa5421c02 | |||
| 1369d3c323 | |||
| 095228a616 | |||
| 30917471d5 | |||
| c2047ced83 |
@@ -4,13 +4,13 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
--background: #f5faff;;
|
--background: #ffffff;;
|
||||||
--card: #f1f8ff;;
|
--card: #fcfcfc;;
|
||||||
--foreground: #001122;;
|
--foreground: #000000e6;;
|
||||||
--primary-cta: #15479c;;
|
--primary-cta: #1a1a1a;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #ffffff;;
|
||||||
--accent: #a8cce8;;
|
--accent: #808080;;
|
||||||
--background-accent: #7ba3cf;;
|
--background-accent: #d3d3d3;;
|
||||||
|
|
||||||
/* 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);
|
||||||
@@ -495,7 +495,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-prata), sans-serif;
|
font-family: var(--font-playfair-display --font-roboto), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -508,5 +508,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-prata), sans-serif;
|
font-family: var(--font-playfair-display --font-roboto), sans-serif;
|
||||||
}
|
}
|
||||||
@@ -1,13 +1,18 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Prata } from "next/font/google";
|
import { Playfair_Display, Roboto } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const prata = Prata({
|
const playfairDisplay = Playfair_Display({
|
||||||
variable: "--font-prata",
|
variable: "--font-playfair-display",
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
weight: ["400"],
|
});
|
||||||
|
|
||||||
|
const roboto = Roboto({
|
||||||
|
variable: "--font-roboto",
|
||||||
|
subsets: ["latin"],
|
||||||
|
weight: ["100", "300", "400", "500", "700", "900"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
@@ -44,7 +49,7 @@ export default function RootLayout({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body
|
||||||
className={prata.variable}
|
className={`${playfairDisplay.variable} ${roboto.variable}`}
|
||||||
>
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
@@ -1270,4 +1275,4 @@ export default function RootLayout({
|
|||||||
</ServiceWrapper>
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ export default function LandingPage() {
|
|||||||
borderRadius="pill"
|
borderRadius="pill"
|
||||||
contentWidth="mediumSmall"
|
contentWidth="mediumSmall"
|
||||||
sizing="medium"
|
sizing="medium"
|
||||||
background="noiseGradient"
|
background="none"
|
||||||
cardStyle="gradient-bordered"
|
cardStyle="gradient-bordered"
|
||||||
primaryButtonStyle="layered-depth"
|
primaryButtonStyle="layered-depth"
|
||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="glass"
|
||||||
@@ -52,7 +52,7 @@ export default function LandingPage() {
|
|||||||
{ text: "Schedule Consultation", href: "contact" },
|
{ text: "Schedule Consultation", href: "contact" },
|
||||||
{ text: "Our Services", href: "services" }
|
{ text: "Our Services", href: "services" }
|
||||||
]}
|
]}
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766938356113-opfze8l1.jpg"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766938896016-15kyl7s5.jpg"
|
||||||
imageAlt="Modern law office in New York City"
|
imageAlt="Modern law office in New York City"
|
||||||
frameStyle="card"
|
frameStyle="card"
|
||||||
/>
|
/>
|
||||||
@@ -258,4 +258,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user