Skip to content

Commit

Permalink
feat: update LandingPage with HappyNewYearHeader and GetStartedButton…
Browse files Browse the repository at this point in the history
… components
  • Loading branch information
neopromic committed Jan 5, 2025
1 parent 24c1cef commit 47f6ee6
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import Link from "next/link";
import Header from "./_components/Header";
import { buttonVariants } from "./_components/ui/button";
import HappyNewYearHeader from "./_components/HappyNewYearHeader";
import GetStartdButton from "./_components/Landing/get-started-button";

export default function LandingPage() {
return (
<>
<HappyNewYearHeader />
<Header />
<main className="flex flex-1 flex-col items-center justify-center p-6 text-center">
<h1 className="text-4xl font-bold tracking-tight sm:text-6xl">
Expand All @@ -13,9 +14,7 @@ export default function LandingPage() {
<p className="my-6 text-lg text-muted-foreground">
Organize suas despesas, investimentos e ganhos de forma inteligente.
</p>
<Link href="/login" className={buttonVariants({ variant: "default" })}>
Começar agora
</Link>
<GetStartdButton />
</main>
<footer className="flex flex-col items-center justify-center p-6 text-center">
<p className="text-xs text-muted-foreground">
Expand Down

0 comments on commit 47f6ee6

Please sign in to comment.