6 Commits

Author SHA1 Message Date
8e526d566b Update src/app/page.tsx 2026-03-05 13:40:59 +00:00
8b86ab0989 Update src/app/styles/variables.css 2026-03-05 13:39:40 +00:00
de59c9dad9 Update src/app/styles/base.css 2026-03-05 13:39:40 +00:00
58d27c1a26 Update src/app/page.tsx 2026-03-05 13:39:39 +00:00
949bed7d88 Update src/app/layout.tsx 2026-03-05 13:39:39 +00:00
ef632330a3 Merge version_1 into main
Merge version_1 into main
2026-03-05 13:35:10 +00:00
4 changed files with 20 additions and 28 deletions

View File

@@ -1,24 +1,18 @@
import type { Metadata } from "next"; 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 { Inter } from "next/font/google";
import { Raleway } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
const halant = Halant({ const dmSans = DM_Sans({
variable: "--font-halant", subsets: ["latin"], variable: "--font-dm-sans", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const inter = Inter({
variable: "--font-inter", subsets: ["latin"], variable: "--font-inter", subsets: ["latin"],
}); });
const raleway = Raleway({
variable: "--font-raleway", subsets: ["latin"],
});
export const metadata: Metadata = { 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"), 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: { alternates: {
@@ -47,9 +41,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body <body className={`${dmSans.variable} ${inter.variable} antialiased`}>
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
>
<Tag /> <Tag />
{children} {children}

View File

@@ -15,16 +15,16 @@ import { Zap, DollarSign, Star, Shield, Award, Users, Rocket } from "lucide-reac
export default function LandingPage() { export default function LandingPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="hover-bubble" defaultButtonVariant="text-stagger"
defaultTextAnimation="reveal-blur" defaultTextAnimation="entrance-slide"
borderRadius="rounded" borderRadius="rounded"
contentWidth="medium" contentWidth="mediumLarge"
sizing="mediumLargeSizeLargeTitles" sizing="mediumLargeSizeLargeTitles"
background="none" background="aurora"
cardStyle="outline" cardStyle="glass-elevated"
primaryButtonStyle="flat" primaryButtonStyle="radial-glow"
secondaryButtonStyle="glass" secondaryButtonStyle="glass"
headingFontWeight="normal" headingFontWeight="semibold"
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleApple <NavbarStyleApple

View File

@@ -11,7 +11,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-raleway), sans-serif; font-family: var(--font-dm-sans), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-raleway), sans-serif; font-family: var(--font-dm-sans), sans-serif;
} }

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #010912; --background: #0a0a0a;
--card: #152840; --card: #1a1a1a;
--foreground: #e6f0ff; --foreground: #ffffffe6;
--primary-cta: #cee7ff; --primary-cta: #a78bfa;
--primary-cta-text: #010912; --primary-cta-text: #010912;
--secondary-cta: #0e1a29; --secondary-cta: #1a1a1a;
--secondary-cta-text: #e6f0ff; --secondary-cta-text: #e6f0ff;
--accent: #3f5c79; --accent: #a78bfa;
--background-accent: #004a93; --background-accent: #7c3aed;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);