From dd113962c99c4a9cc4b99e9cbbf27871ca2208be Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 21:46:30 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a23f600..4ea5c27 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -5,19 +5,10 @@ import { Public_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; +import { Inter_Tight } from "next/font/google"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); export const metadata: Metadata = { title: "Private Clipping Services & Team Management | billiclipd", description: "Transform your longform content into viral shortform clips with personalized team management. 10B+ views generated. TikTok, Reels, Shorts optimization with direct collaboration.", keywords: "private clipping services, TikTok clips, viral growth, content repurposing, Instagram Reels, YouTube Shorts, dedicated team", metadataBase: new URL("https://billiclipd.com"), @@ -42,6 +33,12 @@ export const metadata: Metadata = { }, }; +const interTight = Inter_Tight({ + variable: "--font-inter-tight", + subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -50,9 +47,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From b45ee0cf9ab1e973c498237cd438f1d12934d298 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 21:46:30 +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 ce3eac0..a25430f 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-public-sans), sans-serif; + font-family: var(--font-inter-tight), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-public-sans), sans-serif; + font-family: var(--font-inter-tight), sans-serif; } -- 2.49.1