4 Commits

Author SHA1 Message Date
1369d3c323 Update src/app/page.tsx 2025-12-28 16:30:18 +00:00
095228a616 Update src/app/layout.tsx 2025-12-28 16:30:17 +00:00
30917471d5 Update src/app/globals.css 2025-12-28 16:30:16 +00:00
c2047ced83 Update src/app/page.tsx 2025-12-28 16:21:42 +00:00
3 changed files with 15 additions and 10 deletions

View File

@@ -495,7 +495,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-prata), sans-serif;
font-family: var(--font-playfair-display --font-roboto), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -508,5 +508,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-prata), sans-serif;
font-family: var(--font-playfair-display --font-roboto), sans-serif;
}

View File

@@ -1,13 +1,18 @@
import type { Metadata } from "next";
import { Prata } from "next/font/google";
import { Playfair_Display, Roboto } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const prata = Prata({
variable: "--font-prata",
const playfairDisplay = Playfair_Display({
variable: "--font-playfair-display",
subsets: ["latin"],
weight: ["400"],
});
const roboto = Roboto({
variable: "--font-roboto",
subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
export const metadata: Metadata = {
@@ -44,7 +49,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={prata.variable}
className={`${playfairDisplay.variable} ${roboto.variable}`}
>
<Tag />
{children}
@@ -1270,4 +1275,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -52,7 +52,7 @@ export default function LandingPage() {
{ text: "Schedule Consultation", href: "contact" },
{ 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"
frameStyle="card"
/>
@@ -258,4 +258,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}