From 433f10ea50cb731253ad2e406eff9dd7d639bac6 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 11:56:57 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 285b116..d23c101 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -3,10 +3,8 @@ import { Figtree } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; +import { Poppins } from "next/font/google"; -const figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], -}); export const metadata: Metadata = { title: "Kviten | Premium Floral Design & Arrangements", description: "Exquisite handcrafted flower arrangements for weddings, events, and special occasions. Premium quality blooms delivered with artistry and care.", keywords: "flowers, florist, arrangements, wedding flowers, event flowers, premium bouquets, floral design", metadataBase: new URL("https://kviten.com"), @@ -29,6 +27,12 @@ export const metadata: Metadata = { } }; +const poppins = Poppins({ + variable: "--font-poppins", + subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -37,9 +41,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From 67f59af34697289fee6ac0f43a5242baa66358f5 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 11:56:57 +0000 Subject: [PATCH 2/2] Update theme fonts --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index 578efaa..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-figtree), 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-figtree), sans-serif; + font-family: var(--font-poppins), sans-serif; } -- 2.49.1