diff --git a/src/app/layout.tsx b/src/app/layout.tsx index eb042d6..6d4b45f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,13 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Poppins } from "next/font/google"; import { DM_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); const dmSans = DM_Sans({ @@ -42,7 +37,7 @@ export default function RootLayout({ {children} diff --git a/src/app/page.tsx b/src/app/page.tsx index 433a47b..f26ddbc 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,20 +9,21 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; import ContactText from '@/components/sections/contact/ContactText'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { Award, CheckCircle, Heart } from 'lucide-react'; export default function LandingPage() { return ( diff --git a/src/app/styles/base.css b/src/app/styles/base.css index c480bac..0f9f89d 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-dm-sans), sans-serif; + font-family: var(--font-poppins), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-dm-sans), sans-serif; + font-family: var(--font-poppins), sans-serif; } diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index e6cfc10..0e1f9b7 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: #f5f5f5;; - --card: #ffffff;; + /* --background: #ffffff;; + --card: #f9f9f9;; --foreground: #1c1c1c;; - --primary-cta: #341f51;; + --primary-cta: #2c2c2c;; --secondary-cta: #ffffff;; - --accent: #6139e6;; - --background-accent: #b3a8e8;; */ + --accent: #15479c;; + --background-accent: #a8cce8;; */ - --background: #f5f5f5;; - --card: #ffffff;; + --background: #ffffff;; + --card: #f9f9f9;; --foreground: #1c1c1c;; - --primary-cta: #341f51;; + --primary-cta: #2c2c2c;; --primary-cta-text: #f5f5f5;; --secondary-cta: #ffffff;; --secondary-cta-text: #1c1c1c;; - --accent: #6139e6;; - --background-accent: #b3a8e8;; + --accent: #15479c;; + --background-accent: #a8cce8;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);