Update src/app/layout.tsx

This commit is contained in:
2026-03-05 13:39:39 +00:00
parent ef632330a3
commit 949bed7d88

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
>
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
<Tag />
{children}