diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4122085..e352c8d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,18 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; -import { Raleway } 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 dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], -}); - export const metadata: Metadata = { title: "StealthVM - High-Performance VPS Hosting for Developers", description: "Deploy powerful virtual machines in seconds. Privacy-first infrastructure with 99.99% uptime, global locations, and complete root access for developers and businesses.", keywords: "VPS hosting, virtual machine, cloud server, high-performance infrastructure, privacy-focused hosting, developer hosting", metadataBase: new URL("https://stealthvm.com"), alternates: { @@ -47,9 +41,7 @@ export default function RootLayout({ return ( - + {children} diff --git a/src/app/page.tsx b/src/app/page.tsx index 151fd1c..ccca7d4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -15,16 +15,16 @@ import { Zap, DollarSign, Star, Shield, Award, Users, Rocket } from "lucide-reac export default function LandingPage() { return (