diff --git a/app/(dashboard)/[tenant]/settings/page.tsx b/app/(dashboard)/[tenant]/settings/page.tsx index d9cb5ab..4e6f60d 100644 --- a/app/(dashboard)/[tenant]/settings/page.tsx +++ b/app/(dashboard)/[tenant]/settings/page.tsx @@ -35,6 +35,8 @@ export default async function Settings() { getTimezone(), ]); + const isDemoUser = claims.username === "demo"; + return ( <> @@ -70,26 +72,30 @@ export default async function Settings() {

Name

- + {!isDemoUser ? ( + + ) : null}

Email address

- + {!isDemoUser ? ( + + ) : null}
{timezone ? ( diff --git a/app/page.tsx b/app/page.tsx index 6764aa0..9bebc20 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -26,10 +26,10 @@ export default async function Home() {
-

+

{SITE_METADATA.TAGLINE}

-

+

{SITE_METADATA.DESCRIPTION}

diff --git a/components/landing-page/call-to-action.tsx b/components/landing-page/call-to-action.tsx index 2ef8423..fc15032 100644 --- a/components/landing-page/call-to-action.tsx +++ b/components/landing-page/call-to-action.tsx @@ -2,23 +2,35 @@ import { buttonVariants } from "@/components/ui/button"; import Link from "next/link"; function CTA() { - return ( -
-
-

- Boost your productivity. Start using 'Manage' today. -

-
- - Get Started - - - Request Access - -
-
-
- ); + return ( +
+
+

+ Boost your productivity. Start using 'Manage' today. +

+
+ + Get Started + + + Request Access + +
+
+
+ ); } export { CTA }; diff --git a/data/marketing.ts b/data/marketing.ts index 2816714..6748064 100644 --- a/data/marketing.ts +++ b/data/marketing.ts @@ -1,6 +1,6 @@ export const SITE_METADATA = { TITLE: "Manage [beta]", - TAGLINE: "Manage Tasks, Documents, Files, and Events with Ease", + TAGLINE: "Manage Tasks, Documents,\nFiles, and Events with Ease", DESCRIPTION: - "Manage is an open-source project management app inspired by Basecamp. With its intuitive interface, customizable features, and emphasis on collaboration, Manage empowers teams to enhance productivity and achieve project success. Enjoy the benefits of open-source flexibility, data security, and a thriving community while managing your projects efficiently with Manage.", + "Manage is an open-source project management app inspired by Basecamp.\nWith its intuitive interface, customizable features, and emphasis on collaboration, Manage empowers teams to enhance productivity and achieve project success.\nEnjoy the benefits of open-source flexibility, data security, and a thriving community while managing your projects efficiently with Manage.", };