Skip to content

Commit

Permalink
ui: minor ui changes to marketing pages
Browse files Browse the repository at this point in the history
  • Loading branch information
flsilva committed Feb 7, 2024
1 parent 244044d commit 5549e4f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/app/(marketing)/features/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { ShowContentTransition } from '@/features/marketing/shared/ui/ShowConten
export default function FeaturesPage() {
return (
<ShowContentTransition>
<div className="pt-24 sm:pt-36 lg:pt-42">
<div className="pt-20 sm:pt-36 lg:pt-32">
<HeroHeading>
Capture Everything <br />
<span className="text-green-700">Free Your Mind</span>
Expand Down
2 changes: 1 addition & 1 deletion src/app/(marketing)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { ShowContentTransition } from '@/features/marketing/shared/ui/ShowConten
export default function LandingPage() {
return (
<ShowContentTransition>
<div className="pt-24 sm:pt-36 lg:pt-42">
<div className="pt-20 sm:pt-36 lg:pt-32">
<HeroHeading>
Free and Open Source <br />
<span className="text-green-700">Task Manager</span>
Expand Down
2 changes: 1 addition & 1 deletion src/app/(marketing)/pricing/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { ShowContentTransition } from '@/features/marketing/shared/ui/ShowConten
export default function PricingPage() {
return (
<ShowContentTransition>
<div className="pt-16 sm:pt-32 lg:pt-38">
<div className="pt-20 sm:pt-36 lg:pt-32">
<HeroHeading>
Free
<br />
Expand Down
2 changes: 1 addition & 1 deletion src/app/auth/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Footer } from '@/features/marketing/shared/ui/Footer';
export default function AuthLayout({ children }: { children: React.ReactNode }) {
return (
<>
<div className="mt-8 flex flex-1 flex-col bg-white px-4 md:mt-12">
<div className="mt-4 flex flex-1 flex-col bg-white px-4 md:mt-6">
<div className="flex justify-center">
<Link href="/" className="-m-1.5 p-1.5">
<span className="sr-only">Open Task</span>
Expand Down
4 changes: 2 additions & 2 deletions src/app/auth/sign-in/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ export default async function SignInPage() {
/**/

return (
<div className="pb-24">
<h2 className="mb-9 mt-12 text-center text-xl font-semibold text-gray-900">Sign in</h2>
<div className="pb-20">
<h2 className="mb-9 mt-8 text-center text-xl font-semibold text-gray-900">Sign in</h2>
<div className="sm:mx-auto sm:w-full sm:max-w-sm">
<OAuthProviderButton action={signInWithOAuth} provider={OAuthProvider.Google}>
<GoogleLogoIcon />
Expand Down

0 comments on commit 5549e4f

Please sign in to comment.