import { NextPage } from "next"; import NextImage from "next/image"; import React from "react"; import tw, { styled } from "twin.macro"; import { DiscordIcon, RssIcon, TwitterIcon } from "../components/Icons"; import { Link } from "../components/Link"; import { ArrowRight, Book, Code, Database, GitHub, Zap } from "react-feather"; const Home: NextPage = () => { return ( <>

Introduction

{/* Need to make this mobile friendly */}
Quickstart Guide
A short guide on making your first deploy on Railway in a couple of minutes.
Get Started
Starters See all starters you can deploy to get up and running on Railway. Language Specific Apps Get information on how to deploy specific applications. Variables Understand how Railway handles variables on the platform. Guides Tutorials on common developer scenarios.
Contributing
Each page footer contains an "Edit on GitHub" Link. Make a pull request, and we'll merge it!
Docs Repository
Join our Discord Server
Check out the Changelog Follow Us on Twitter
); }; export default Home; const ButtonLink = styled(Link)` ${tw`block font-medium rounded shadow`} ${tw`px-3 py-2`} ${tw`focus:outline-none`} `; const OverviewLink = styled(Link)` ${tw`flex border border-gray-100 rounded-md p-6 hover:bg-gray-100 hover:shadow-lg`} `; const OverviewLinkIcon = styled.div` ${tw`flex border border-pink-200 items-center p-4 h-16 w-16 rounded-md bg-background`} `; const OverviewLinkTextbox = styled.div` ${tw`ml-6`} `; const OverviewLinkHeading = styled.div` ${tw`font-semibold text-lg mb-1`} `; const OverviewLinkText = styled.div` ${tw`font-normal text-base text-gray-600`} `; const OverviewSecondaryLink = styled(Link)` ${tw`flex items-center gap-2 hover:text-pink-700`} `;