import type { BlitzPage } from "blitz"; import { Head } from "blitz"; import { XIcon } from "@heroicons/react/outline"; import Header from "../components/header"; import iphoneMockup from "../images/iphone-mockup.png"; import mockupImage from "../images/mockup-image-01.png"; import Checkmark from "../components/checkmark"; const LandingPage: BlitzPage = () => { return ( <> Shellphone: Your Personal Cloud Phone
{/* Hero content */}
{/* Content */}

Take your phone number anywhere you go

Coming soon! 🐚 Keep your phone number and pay less for your communications, even abroad.

{/* CTA form */}
{/* Success message */} {/*

Thanks for subscribing!

*/}
  • Send and receive SMS messages.
  • Make and receive phone calls.
  • No download required.
{/* Mobile mockup */}
{/* Glow illustration */} {/* Image inside mockup size: 290x624px (or 580x1248px for Retina devices) */} Features illustration {/* iPhone mockup */}
); }; function ReferralBanner() { const isDisabled = true; if (isDisabled) { return null; } return (

🎉 New: Get one month free for every friend that joins and subscribe! {" "} Learn more

); } LandingPage.suppressFirstRenderFlicker = true; export default LandingPage;