diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9eeca3e..540f87d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,17 @@ import type { Metadata } from "next"; -import { Manrope } from "next/font/google"; -import { DM_Sans } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Raleway } from "next/font/google"; +import { Lato } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], +const raleway = Raleway({ + variable: "--font-raleway", subsets: ["latin"], }); -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const lato = Lato({ + variable: "--font-lato", subsets: ["latin"], + weight: ["100", "300", "400", "700", "900"], }); export const metadata: Metadata = { @@ -54,7 +44,7 @@ export default function RootLayout({ {children} diff --git a/src/app/page.tsx b/src/app/page.tsx index 73d72ad..2d2090e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -15,16 +15,16 @@ import { Award, Sparkles, Flag, Zap, Trophy, Phone, Star, Crown, Briefcase } fro export default function LandingPage() { return (