Skip to content

Instantly share code, notes, and snippets.

@timmyers
Created January 26, 2023 22:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timmyers/1df504bf1e2ae99b6a10dcc409e77b97 to your computer and use it in GitHub Desktop.
Save timmyers/1df504bf1e2ae99b6a10dcc409e77b97 to your computer and use it in GitHub Desktop.
fearless.tools homepage
import Head from 'next/head'
export default function Home() {
return (
<>
<Head>
<title>Fearless Tools</title>
<meta name="description" content="Infrastructure without fear" />
<link rel="icon" href="/favicon.ico" />
</Head>
<main>
<div className="bg-emerald-200">
<div className="mx-auto max-w-7xl py-16 px-4 sm:py-24 sm:px-6 lg:px-8">
<div className="text-center">
<h2 className="text-lg font-semibold text-emerald-800">Fearless</h2>
<p className="mt-1 text-4xl font-bold text-gray-900 sm:text-5xl lg:text-6xl">
Use AWS to its fullest without fear.
</p>
<p className="mx-auto mt-5 max-w-xl text-xl text-gray-500">
Tools and guides to help you use the cloud without surprise bills, tech-debt chaos, or security incidents.
</p>
</div>
</div>
</div>
<div className="mx-auto mt-10 text-center">
<p className="mx-auto max-w-lg text-lg text-gray-900">
Sign up for the newsletter for updates and detailed guides!
</p>
<iframe src="https://fearlessaws.substack.com/embed" className="mx-auto" width="480" height="250" frameBorder="0" scrolling="no"></iframe>
</div>
</main>
</>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment