-
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
39 changed files
with
537 additions
and
162 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,23 +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:{' '} | ||
<Button href="mailto:[email protected]" variant="link"> | ||
email us | ||
</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
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; |
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
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
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.