-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6499009
commit bba4175
Showing
7 changed files
with
741 additions
and
447 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import { useRouter } from "next/router"; | ||
import { Button } from "../components/button"; | ||
import Shell from "../components/shell"; | ||
|
||
export const Home = () => { | ||
const router = useRouter(); | ||
|
||
return ( | ||
<Shell title="Home"> | ||
<main className="flex min-h-screen flex-col items-center justify-center bg-gray-900"> | ||
<div className="container flex flex-col items-center justify-center gap-2 px-4 py-16 "></div> | ||
<h1 className="text-5xl font-extrabold tracking-tight text-white sm:text-[5rem]"> | ||
CTA | ||
</h1> | ||
<div className="container flex flex-col items-center justify-center py-16"> | ||
<Button | ||
style={{ | ||
background: "salmon", | ||
}} | ||
label={"Get Started"} | ||
onClick={() => void router.push("/pricing")} | ||
/> | ||
</div> | ||
</main> | ||
</Shell> | ||
); | ||
}; | ||
|
||
export default Home; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters