diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a9b4851..eb75c63 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,19 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; +import { Poppins } 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 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"], +}); + export const metadata: Metadata = { title: "Luc | Design. Automate. Launch.", description: "Premium design, AI automation, and SaaS expertise combined. Luc transforms your vision into production-ready products.", keywords: "design agency, SaaS development, AI automation, digital transformation, creative solutions", openGraph: { title: "Luc | Design. Automate. Launch.", description: "Premium design, AI automation, and SaaS expertise. Transform your vision into reality.", type: "website", siteName: "Luc", images: [ @@ -38,7 +39,7 @@ export default function RootLayout({ {children} diff --git a/src/app/page.tsx b/src/app/page.tsx index b20ae30..c97f00e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,16 +33,16 @@ import { export default function LandingPage() { return (