Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 47fd642112 | |||
| a2a19f3127 | |||
| cf549be68c | |||
| 8e526d566b | |||
| 08f34d53cb | |||
| 8b86ab0989 | |||
| de59c9dad9 | |||
| 58d27c1a26 | |||
| 949bed7d88 | |||
| ef632330a3 |
@@ -1,58 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } 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 inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const raleway = Raleway({
|
||||
variable: "--font-raleway", 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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1420,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -15,16 +15,16 @@ import { Zap, DollarSign, Star, Shield, Award, Users, Rocket } from "lucide-reac
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="none"
|
||||
cardStyle="outline"
|
||||
primaryButtonStyle="flat"
|
||||
background="aurora"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
@@ -42,7 +42,7 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCarouselLogo
|
||||
logoText="STEALTHVM"
|
||||
description="Deploy powerful virtual machines in seconds. High-performance VPS hosting built for developers, businesses, and privacy-focused users."
|
||||
description="Deploy secure, high-performance servers instantly. 99.99% uptime guarantee backed by our industry-leading infrastructure commitment."
|
||||
buttons={[
|
||||
{ text: "Get Started", href: "#contact" },
|
||||
{ text: "View Plans", href: "#pricing" },
|
||||
@@ -50,13 +50,16 @@ export default function LandingPage() {
|
||||
slides={[
|
||||
{
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWoINGMzxCJoDSg687bYttnbCs/abstract-futuristic-server-infrastructur-1772717663012-b087e74b.png?_wi=1", imageAlt: "Server infrastructure network"},
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWoINGMzxCJoDSg687bYttnbCs/abstract-futuristic-server-infrastructur-1772717663012-b087e74b.png?_wi=1", imageAlt: "Server infrastructure network"
|
||||
},
|
||||
{
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWoINGMzxCJoDSg687bYttnbCs/abstract-futuristic-server-infrastructur-1772717663012-b087e74b.png?_wi=2", imageAlt: "Cloud computing nodes"},
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWoINGMzxCJoDSg687bYttnbCs/abstract-futuristic-server-infrastructur-1772717663012-b087e74b.png?_wi=2", imageAlt: "Cloud computing nodes"
|
||||
},
|
||||
{
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWoINGMzxCJoDSg687bYttnbCs/abstract-futuristic-server-infrastructur-1772717663012-b087e74b.png?_wi=3", imageAlt: "Global server infrastructure"},
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWoINGMzxCJoDSg687bYttnbCs/abstract-futuristic-server-infrastructur-1772717663012-b087e74b.png?_wi=3", imageAlt: "Global server infrastructure"
|
||||
},
|
||||
]}
|
||||
autoplayDelay={5000}
|
||||
showDimOverlay={true}
|
||||
@@ -75,11 +78,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
negativeCard={{
|
||||
items: [
|
||||
"Shared server resources", "Limited customization options", "Inconsistent performance", "Generic support", "Data center lock-in"],
|
||||
"Shared server resources", "Limited customization options", "Inconsistent performance", "Generic support", "Data center lock-in"
|
||||
],
|
||||
}}
|
||||
positiveCard={{
|
||||
items: [
|
||||
"Dedicated high-performance resources", "Full root access and control", "Blazing fast NVMe storage", "24/7 expert support", "Global deployment flexibility"],
|
||||
"Dedicated high-performance resources", "Full root access and control", "Blazing fast NVMe storage", "24/7 expert support", "Global deployment flexibility"
|
||||
],
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
@@ -97,22 +102,26 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "starter", badge: "Perfect for Learning", badgeIcon: Zap,
|
||||
price: "$15/mo", subtitle: "Ideal for developers and small projects", features: [
|
||||
"1 vCPU core", "2GB RAM", "50GB NVMe SSD", "2TB bandwidth/month", "1 IPv4 address"],
|
||||
"1 vCPU core", "2GB RAM", "50GB NVMe SSD", "2TB bandwidth/month", "1 IPv4 address"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "developer", badge: "Most Popular", badgeIcon: Star,
|
||||
price: "$45/mo", subtitle: "Built for production applications", features: [
|
||||
"4 vCPU cores", "16GB RAM", "200GB NVMe SSD", "10TB bandwidth/month", "5 IPv4 addresses", "DDoS protection included"],
|
||||
"4 vCPU cores", "16GB RAM", "200GB NVMe SSD", "10TB bandwidth/month", "5 IPv4 addresses", "DDoS protection included"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "business", badge: "Best Value", badgeIcon: Zap,
|
||||
price: "$120/mo", subtitle: "Enterprise-ready performance", features: [
|
||||
"8 vCPU cores", "32GB RAM", "500GB NVMe SSD", "25TB bandwidth/month", "Unlimited IPv4 addresses", "Advanced DDoS protection", "Priority support"],
|
||||
"8 vCPU cores", "32GB RAM", "500GB NVMe SSD", "25TB bandwidth/month", "Unlimited IPv4 addresses", "Advanced DDoS protection", "Priority support"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "enterprise", badge: "Full Control", badgeIcon: Shield,
|
||||
price: "Custom", subtitle: "Unlimited resources and custom solutions", features: [
|
||||
"Dedicated resources", "Custom CPU/RAM/Storage", "Unlimited bandwidth", "Unlimited IPv4 addresses", "Advanced security features", "White-glove support", "SLA guarantee"],
|
||||
"Dedicated resources", "Custom CPU/RAM/Storage", "Unlimited bandwidth", "Unlimited IPv4 addresses", "Advanced security features", "White-glove support", "SLA guarantee"
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -143,7 +152,8 @@ export default function LandingPage() {
|
||||
<TextSplitAbout
|
||||
title="Powerful Dashboard, Simple Control"
|
||||
description={[
|
||||
"Manage your entire infrastructure from one intuitive dashboard. Real-time monitoring, instant provisioning, and complete resource control at your fingertips.", "Launch new virtual machines in under 60 seconds. Configure networks, manage storage, monitor performance, and scale resources without a single API call or command line argument.", "Our developer-first interface puts power in your hands. Full SSH access, root privileges, and unlimited API calls give you complete control over your infrastructure."]}
|
||||
"Manage your entire infrastructure from one intuitive dashboard. Real-time monitoring, instant provisioning, and complete resource control at your fingertips.", "Launch new virtual machines in under 60 seconds. Configure networks, manage storage, monitor performance, and scale resources without a single API call or command line argument.", "Our developer-first interface puts power in your hands. Full SSH access, root privileges, and unlimited API calls give you complete control over your infrastructure."
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "Explore Dashboard Features", href: "https://demo.example.com" },
|
||||
]}
|
||||
@@ -157,16 +167,20 @@ export default function LandingPage() {
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Alex Chen", imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWoINGMzxCJoDSg687bYttnbCs/professional-headshot-of-a-tech-entrepre-1772717665168-ce7a1320.png", imageAlt: "Alex Chen"},
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWoINGMzxCJoDSg687bYttnbCs/professional-headshot-of-a-tech-entrepre-1772717665168-ce7a1320.png", imageAlt: "Alex Chen"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Sarah Johnson", imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWoINGMzxCJoDSg687bYttnbCs/professional-headshot-of-a-cto-or-techni-1772717663317-2cc8a3b7.png", imageAlt: "Sarah Johnson"},
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWoINGMzxCJoDSg687bYttnbCs/professional-headshot-of-a-cto-or-techni-1772717663317-2cc8a3b7.png", imageAlt: "Sarah Johnson"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Michael Rodriguez", imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWoINGMzxCJoDSg687bYttnbCs/professional-headshot-of-a-startup-found-1772717664538-7aa38ab7.png", imageAlt: "Michael Rodriguez"},
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWoINGMzxCJoDSg687bYttnbCs/professional-headshot-of-a-startup-found-1772717664538-7aa38ab7.png", imageAlt: "Michael Rodriguez"
|
||||
},
|
||||
{
|
||||
id: "4", name: "James Wilson", imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWoINGMzxCJoDSg687bYttnbCs/professional-headshot-of-a-devops-engine-1772717663593-85b83937.png", imageAlt: "James Wilson"},
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWoINGMzxCJoDSg687bYttnbCs/professional-headshot-of-a-devops-engine-1772717663593-85b83937.png", imageAlt: "James Wilson"
|
||||
},
|
||||
]}
|
||||
cardTitle="Trusted by thousands of developers, startups, and enterprises worldwide who demand high-performance infrastructure without compromise"
|
||||
cardTag="See what they say"
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-raleway), sans-serif;
|
||||
font-family: var(--font-dm-sans), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-raleway), sans-serif;
|
||||
font-family: var(--font-dm-sans), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #010912;
|
||||
--card: #152840;
|
||||
--foreground: #e6f0ff;
|
||||
--primary-cta: #cee7ff;
|
||||
--background: #0a0a0a;
|
||||
--card: #1a1a1a;
|
||||
--foreground: #ffffffe6;
|
||||
--primary-cta: #a78bfa;
|
||||
--primary-cta-text: #010912;
|
||||
--secondary-cta: #0e1a29;
|
||||
--secondary-cta: #1a1a1a;
|
||||
--secondary-cta-text: #e6f0ff;
|
||||
--accent: #3f5c79;
|
||||
--background-accent: #004a93;
|
||||
--accent: #a78bfa;
|
||||
--background-accent: #7c3aed;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user