diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index e352c8d..be98c80 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,50 +1,20 @@
import type { Metadata } from "next";
-import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const dmSans = DM_Sans({
- variable: "--font-dm-sans", subsets: ["latin"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ 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: {
- canonical: "https://stealthvm.com"},
- openGraph: {
- title: "StealthVM - Enterprise VPS Hosting", description: "Launch high-performance virtual machines with complete privacy and control. Deploy in under 60 seconds.", url: "https://stealthvm.com", siteName: "StealthVM", type: "website", images: [
- {
- url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWoINGMzxCJoDSg687bYttnbCs/abstract-futuristic-server-infrastructur-1772717663012-b087e74b.png", alt: "StealthVM infrastructure"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "StealthVM - High-Performance VPS", description: "Deploy VMs in seconds with complete privacy and control. Enterprise infrastructure made simple.", images: [
- "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWoINGMzxCJoDSg687bYttnbCs/abstract-futuristic-server-infrastructur-1772717663012-b087e74b.png"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "StealthVM - Secure High-Performance VPS Hosting", description: "Deploy secure, high-performance servers instantly with StealthVM. Enterprise-grade infrastructure for developers and businesses."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-