diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d7777e..344dfec 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,12 +1,13 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; +import { Poppins } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); const inter = Inter({ @@ -35,7 +36,7 @@ export default function RootLayout({ {children} diff --git a/src/app/page.tsx b/src/app/page.tsx index fe779c2..8fb6b89 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -41,7 +41,7 @@ export default function LandingPage() {
diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index f66d6be..2fde64f 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -2,23 +2,23 @@ /* Base units */ /* --vw is set by ThemeProvider */ - /* --background: #ffffff;;; - --card: #f9f9f9;;; - --foreground: #000f06e6;;; - --primary-cta: #0a7039;;; - --secondary-cta: #f9f9f9;;; - --accent: #e2e2e2;;; - --background-accent: #c4c4c4;;; */ + /* --background: #f5f4ef;;; + --card: #ffffff;;; + --foreground: #1a1a1a;;; + --primary-cta: #2c2c2c;;; + --secondary-cta: #f5f4ef;;; + --accent: #8a8a8a;;; + --background-accent: #d4a574;;; */ - --background: #ffffff;;; - --card: #f9f9f9;;; - --foreground: #000f06e6;;; - --primary-cta: #0a7039;;; + --background: #f5f4ef;;; + --card: #ffffff;;; + --foreground: #1a1a1a;;; + --primary-cta: #2c2c2c;;; --primary-cta-text: #ffffff;;; - --secondary-cta: #f9f9f9;;; + --secondary-cta: #f5f4ef;;; --secondary-cta-text: #000f06e6;;; - --accent: #e2e2e2;;; - --background-accent: #c4c4c4;;; + --accent: #8a8a8a;;; + --background-accent: #d4a574;;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);