Skip to content

Commit

Permalink
feat: update branding in login page and enhance subscriptions layout …
Browse files Browse the repository at this point in the history
…with section wrapper
  • Loading branch information
neopromic committed Dec 20, 2024
1 parent bc7e731 commit 3c3405b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
6 changes: 3 additions & 3 deletions app/login/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ const Login = async () => {
<div className="mx-auto max-w-[550px] items-start">
<Image
src={"/logo.svg"}
alt="finance ai"
alt="jupiter finance"
width={173}
height={39}
className=""
/>
<h1 className="mt-8 text-4xl font-bold">Bem-vindo</h1>
<p className="mt-2 text-base text-muted-foreground">
A Finance AI é uma plataforma de gestão financeira que utiliza IA
para monitorar suas movimentações, e oferecer insights
A Jupiter Finance é uma plataforma de gestão financeira que utiliza
IA para monitorar suas movimentações, e oferecer insights
personalizados, facilitando o controle do seu orçamento.
</p>
<SignInButton>
Expand Down
4 changes: 2 additions & 2 deletions app/subscriptions/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { ScrollArea } from "../_components/ui/scroll-area";

const Subscriptions = () => {
return (
<>
<section className="h-[100vh] overflow-hidden">
<Header />
<ScrollArea>
<section className="h-screen space-y-6 overflow-hidden p-6 lg:pb-0">
Expand Down Expand Up @@ -93,7 +93,7 @@ const Subscriptions = () => {
</div>
</section>
</ScrollArea>
</>
</section>
);
};

Expand Down
10 changes: 10 additions & 0 deletions tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,18 @@ const config: Config = {
md: "calc(var(--radius) - 2px)",
sm: "calc(var(--radius) - 4px)",
},
animation: {
matrix: "matrix 1s infinite linear",
},
keyframes: {
matrix: {
"0%": { "background-position": "0% 100%, 50% 100%, 100% 100%" },
"100%": { "background-position": "0% 0%, 50% 0%, 100% 0%" },
},
},
},
},
// eslint-disable-next-line @typescript-eslint/no-require-imports
plugins: [require("tailwindcss-animate")],
};
export default config;

0 comments on commit 3c3405b

Please sign in to comment.