import { Poppins } from "next/font/google"; import Image from "next/image"; import serverImage from "@/app/img/hero-right.png"; import footerImage from "@/app/img/logo.png"; import footerImageText from "@/app/img/Status-01.png"; import SLA from "@app/legal/SLA.pdf"; import TOS from "@app/legal/TOS.pdf"; import Privacy from "@app/legal/Privacy.pdf"; const poppins = Poppins({ weight: ["400", "600", "700"], subsets: ["latin"], variable: "--font-poppins", }); const offerings = [ { title: "VPS Hosting", description: "High performance Virtual Private Servers powered by AMD Ryzen™ and our premium network ensure your services run smoothly and reliably.", link: "https://billing.skylinkhosting.com/index.php?rp=/store/phoenix-usa-vps", }, { title: "Premium Minecraft Hosting", description: "Host your dream server at an affordable price, without sacrificing on quality. Premium hardware and DDoS mitigation let you focus on playing.", link: "https://billing.skylinkhosting.com/index.php?rp=/store/premium-minecraft-hosting", }, { title: "Dedicated Servers", description: "Run any compute task on a dedicated machine. Available with 1G or 10G networking and protected by our premium DDoS mitigation.", link: "#", }, { title: "Colocation", description: "Host your own hardware in our racks, and leave the power, networking, cooling, and DDoS mitigation to us. Available in Phoenix, AZ.", link: "#", }, ]; const features = [ { title: "Privacy", description: "We have great respect for all customer privacy. Unless necessary, we will never look through client data.", icon: "🔒", }, { title: "Full Control", description: "You are in full control of your server. Skylink Hosting does not restrict anything, allowing client freedom.", icon: "⚙️", }, { title: "Backup Vaults", description: "Backup your server automatically and securely using our built-in backup manager. Never worry about data loss.", icon: "💾", }, { title: "DDoS Protected", description: "Always-on enterprise DDoS mitigation protects client services from bad actors, and is operated with Path.net.", icon: "🛡️", }, { title: "24/7 Support Team", description: "Have a question, or multiple? Speak to our 24/7 support team. Get support via Discord, email, or a ticket.", icon: "📞", }, ]; export default function Home() { return (
{/* Header */}

Skylink Hosting

{/* Hero Section */}
{/* Left Content */}

High Performance
Cloud Hosting

Deploy your idea instantly with our VPS, game, and web services, or with our dedicated and colocation services with our optimized premium-blend network.

{/* Right Content - Image */}
Cloud Hosting Illustration
{/* What We Offer Section */}

What We Offer

{offerings.map((offer, index) => (

{offer.title}

{offer.description}

Get Started →
))}
{/* Features Section */}

Features

{features.map((feature, index) => (
{feature.icon}

{feature.title}

{feature.description}

))}
{/* Cube Section */}

Like what you see?

Create a ticket for questions or get started today!

{/* Footer Section */}
); }