-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
101 changed files
with
3,058 additions
and
462 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
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 |
---|---|---|
|
@@ -14,24 +14,22 @@ const Page = async () => { | |
title={`Hey, ${user.user_metadata.first_name}!`} | ||
/> | ||
<div className="px-4 pb-8 sm:px-8"> | ||
<div className="prose"> | ||
<div className="prose max-w-[26rem]"> | ||
<p> | ||
At llog, our mission is to empower behavior professionals and their | ||
clients by crafting intuitive and effective software tools that make | ||
lasting behavior change more attainable. | ||
</p> | ||
<p className="max-w-[25rem]"> | ||
Your feedback is invaluable as we evolve and improve. Whether you | ||
have thoughts, ideas, concerns or even dreams, we’d love to | ||
hear from you. Feel free to drop us a message at{' '} | ||
<Button href="mailto:[email protected]" variant="link"> | ||
[email protected] | ||
</Button>{' '} | ||
or{' '} | ||
<Button href="https://cal.com/llogapp/chat" variant="link"> | ||
schedule a call | ||
</Button> | ||
. | ||
clients with tools that make lasting behavior change | ||
more attainable. Your feedback is invaluable as we evolve and | ||
improve. Whether you have thoughts, ideas, concerns or even dreams:{' '} | ||
<span className="whitespace-nowrap"> | ||
<Button href="mailto:[email protected]" variant="link"> | ||
email us | ||
</Button>{' '} | ||
or{' '} | ||
<Button href="https://cal.com/llogapp/chat" variant="link"> | ||
book a call | ||
</Button> | ||
. | ||
</span> | ||
</p> | ||
<p>Happy behavior hacking!</p> | ||
<p className="text-fg-4">~ Cade, Founder</p> | ||
|
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
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 |
---|---|---|
@@ -1,12 +1,18 @@ | ||
import * as Modal from '@/_components/modal'; | ||
import PageModalHeader from '@/_components/page-modal-header'; | ||
import SubjectForm from '@/_components/subject-form'; | ||
import listTags from '@/_queries/list-tags'; | ||
|
||
const Page = () => ( | ||
<Modal.Content> | ||
<PageModalHeader title="New subject" /> | ||
<SubjectForm /> | ||
</Modal.Content> | ||
); | ||
const Page = async () => { | ||
const { data: tags } = await listTags(); | ||
if (!tags) return null; | ||
|
||
return ( | ||
<Modal.Content> | ||
<PageModalHeader title="New subject" /> | ||
<SubjectForm tags={tags} /> | ||
</Modal.Content> | ||
); | ||
}; | ||
|
||
export default Page; |
File renamed without changes.
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,23 @@ | ||
import * as Modal from '@/_components/modal'; | ||
import PageModalHeader from '@/_components/page-modal-header'; | ||
import TeamForm from '@/_components/team-form'; | ||
import getTeam from '@/_queries/get-team'; | ||
|
||
interface PageProps { | ||
params: Promise<{ teamId: string }>; | ||
} | ||
|
||
const Page = async ({ params }: PageProps) => { | ||
const { teamId } = await params; | ||
const { data: team } = await getTeam(teamId); | ||
if (!team) return null; | ||
|
||
return ( | ||
<Modal.Content> | ||
<PageModalHeader title="Edit organization" /> | ||
<TeamForm team={team} /> | ||
</Modal.Content> | ||
); | ||
}; | ||
|
||
export default Page; |
5 changes: 5 additions & 0 deletions
5
app/(pages)/@modal/(layout)/teams/[teamId]/upgrade/loading.tsx
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,5 @@ | ||
import PageModalLoading from '@/_components/page-modal-loading'; | ||
|
||
const Loading = PageModalLoading; | ||
|
||
export default Loading; |
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,5 @@ | ||
import PageModalLoading from '@/_components/page-modal-loading'; | ||
|
||
const Loading = PageModalLoading; | ||
|
||
export default Loading; |
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,12 @@ | ||
import * as Modal from '@/_components/modal'; | ||
import PageModalHeader from '@/_components/page-modal-header'; | ||
import TeamForm from '@/_components/team-form'; | ||
|
||
const Page = async () => ( | ||
<Modal.Content> | ||
<PageModalHeader title="New organization" /> | ||
<TeamForm /> | ||
</Modal.Content> | ||
); | ||
|
||
export default Page; |
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
Oops, something went wrong.