import BrandGithub from "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/brand-github.tsx"; import LemonIcon from "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/lemon-2.tsx"; import CheckIcon from "https://deno.land/x/tabler_icons_tsx@0.0.5/tsx/check.tsx"; import IconChevronRight from "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/chevron-right.tsx"; import IconAlarm from "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/alarm.tsx"; import IconZZZ from "https://deno.land/x/tabler_icons_tsx@0.0.5/tsx/zzz.tsx"; import IconArmchair from "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/armchair.tsx"; export const layout = "bare.njk"; export const title = "Alvis - Never get paged again"; export const year = "2023"; export const series = "techaro"; export const Header = ({ active }) => { const menus = [ { name: "Home", href: "/" }, { name: "Blog", href: "/blog/" }, { name: "Contact", href: "/contact/" }, { name: "Resume", href: "/resume/" }, { name: "Talks", href: "/talks/" }, { name: "VODs", href: "/vods/" }, ]; return (
); }; export const Footer = () => { const menus = [ { title: "Documentation", children: [ { name: "Getting Started", href: "/blog/alvis/" }, { name: "Guide", href: "/blog/alvis/" }, { name: "API", href: "/blog/alvis/" }, { name: "Showcase", href: "/blog/alvis/" }, { name: "Pricing", href: "/blog/alvis/" }, ], }, { title: "Community", children: [ { name: "Forum", href: "/blog/alvis/" }, { name: "Discord", href: "/blog/alvis/" }, ], }, ]; return (
Give ChatGPT root in prod. What could possibly go wrong?
{menus.map((item) => (
{item.title}
))}
Copyright 2023 Xeserv.
All rights reserved.
); }; export const Hero = () => { return (

Alvis

Don't worry about being paged, Alvis will take care of it.

Get started{" "} Learn more{" "}
); }; export const Features = () => { const featureItems = [ { icon: IconAlarm, description: "Automatically respond to production incidents with our industry-leading AI. Alvis will diagnose the problem and fix it.", }, { icon: IconZZZ, description: "Leave yourself free to sleep, write, work on projects, relax, or spend time with your family. Alvis will take care of it.", }, { icon: IconArmchair, description: "Get a detailed report for every incident Alvis handles. This helps you understand what went wrong and how to fix it.", link: "/landing/alvis/P0001/", }, ]; return (
{featureItems.map((item) => { return (

{item.description}

{item.link && (

Read More{" "}

)}
); })}
); }; export const Testimonials = () => { const testimonials = [ { name: "James Dornick", position: "Lead SRE @ WritePulse", color: "bg-[#9d789b]", avatar: "https://cdn.xeiaso.net/avatar/d69caff2a9fd74b7069be6ece1a06ac5", quote: "Honestly, I wasn't able to spend time with my kid until I set up Alvis. Now family time isn't turned into work time!", }, { name: "Samus Rhodes", position: "SRE @ Worcation", color: "bg-[#5b5faf]", avatar: "https://cdn.xeiaso.net/avatar/9108f6d8df326e20a4c1983a910cd952", quote: "I was able to get a promotion after setting up Alvis. I can't believe I didn't do it sooner!", }, { name: "Maria Robotnik", position: "SRE @ G.U.N.", color: "bg-[#d61a9b]", avatar: "https://cdn.xeiaso.net/avatar/f9f35179d3331f30f92793b724c26cf9", quote: "Every time I get paged, I just tell Alvis to take care of it. I don't even have to look at my phone anymore!", }, ]; return (

Testimonials

Don't believe us? Trust the voices of your peers. They obviously know what they're talking about, don't they?

{testimonials.map((testimonial) => (

{testimonial.name}

{testimonial.position}

{testimonial.quote}

))}
); }; export const FAQs = () => { const faqs = [ { question: "How does Alvis work?", answer: "Alvis takes your production playbooks and turns them into diagnostic and remediation scripts. It then runs them when you get paged. If it's able to fix the problem, it closes the incident. Otherwise it escalates to you.", }, { question: "What AI does Alvis use?", answer: "Alvis uses the latest and greatest in large language model technology. It's all developed in-house and is not a wrapper to other services. This ensures your data is safe and secure with Alvis.", }, { question: "What is the connection between Alvis and the Rhadamanthus organization?", answer: "Alvis is a completly separate entity from Rhadamanthus. We are not affiliated with them in any way. We wish them luck with Project Exodus and their conflicts with the Saviorites.", }, { question: "What happens when I go over the number of incidents in my plan?", answer: "Alvis will automatically escalate your incidents to the oncall engineer. This ensures that Alvis is fast and ready for everyone!", }, ]; return (

Frequently asked questions

Can’t find the answer you’re looking for? Reach out to our{" "} customer support {" "} team.

{faqs.map((faq) => (
{faq.question}
{faq.answer}
))}
); }; export const Pricing = () => { const tiers = [ { name: "Individual", id: "tier-individual", href: "/blog/alvis/", priceMonthly: "$10", description: "The essentials to provide your best work for clients.", features: [ "50 incidents included per month", "48 hour response time", "Basic analytics", "Help center access", "Tailscale integration", ], mostPopular: false, }, { name: "Startup", id: "tier-startup", href: "/blog/alvis/", priceMonthly: "$32", description: "A plan that scales with your rapidly growing business.", features: [ "Custom incident response steps", "500 incidents included per month", "Same-day response time", "Advanced analytics", ], mostPopular: true, }, { name: "Enterprise", id: "tier-enterprise", href: "/blog/alvis/", priceMonthly: "$500", description: "Dedicated support and infrastructure for your company.", features: [ "Artificial General Intelligence", "Unlimited incidents", "SOCII/HIPPA/PCI compliance", "Custom analytics", "Custom SLAs", ], mostPopular: false, }, ]; function classNames(...classes) { return classes.filter(Boolean).join(" "); } return (

Pricing

Pricing plans for teams of all sizes

{tiers.map((tier, tierIdx) => (

{tier.name}

{tier.mostPopular ? (

Most popular

) : null}

{tier.description}

{tier.priceMonthly} /month

    {tier.features.map((feature) => (
  • ))}
Buy plan
))}
); }; export const CTA = () => { return (

Boost your productivity.
Start using Alvis today.

Get started Learn more
); }; export default function Alvis() { return (
); }