diff --git a/src/app/globals.css b/src/app/globals.css index ceffb80..bb50809 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -4,21 +4,21 @@ /* Base units */ /* --vw is set by ThemeProvider */ - /* --background: #f5faff;; - --card: #f1f8ff;; - --foreground: #001122;; - --primary-cta: #15479c;; + /* --background: #fef5f3;; + --card: #ffffff;; + --foreground: #1a1a1a;; + --primary-cta: #ff6b9d;; --secondary-cta: #ffffff;; - --accent: #a8cce8;; - --background-accent: #7ba3cf;; */ + --accent: #ffa500;; + --background-accent: #ffe4b5;; */ - --background: #f5faff;; - --card: #f1f8ff;; - --foreground: #001122;; - --primary-cta: #15479c;; + --background: #fef5f3;; + --card: #ffffff;; + --foreground: #1a1a1a;; + --primary-cta: #ff6b9d;; --secondary-cta: #ffffff;; - --accent: #a8cce8;; - --background-accent: #7ba3cf;; + --accent: #ffa500;; + --background-accent: #ffe4b5;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); @@ -509,7 +509,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-prata), sans-serif; + font-family: var(--font-poppins), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -522,5 +522,5 @@ h3, h4, h5, h6 { - font-family: var(--font-prata), sans-serif; + font-family: var(--font-poppins), sans-serif; } \ No newline at end of file diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c99f07a..d4bec68 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,12 +1,12 @@ import type { Metadata } from "next"; -import { Prata } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const prata = Prata({ - variable: "--font-prata", subsets: ["latin"], - weight: ["400"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { @@ -35,7 +35,7 @@ export default function RootLayout({ {children} @@ -1261,4 +1261,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 1bcc8ec..c3b1600 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,4 @@ -"use client" +"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; @@ -224,4 +224,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}