-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
1 parent
a58600a
commit 079cf5e
Showing
20 changed files
with
145 additions
and
198 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 |
---|---|---|
@@ -1,18 +1,13 @@ | ||
import { Stack } from '@chakra-ui/react' | ||
import { AccountHeader } from 'components/account/AccountHeader' | ||
import { Seo } from 'components/Seo' | ||
import { UserContext } from 'contexts/UserContext' | ||
import { AccountContent } from 'layouts/account/AccountContent' | ||
|
||
const AccountSubscriptionPage = () => { | ||
return ( | ||
<UserContext> | ||
<Seo title="My account" />{' '} | ||
<Stack> | ||
<AccountHeader /> | ||
<AccountContent /> | ||
</Stack> | ||
</UserContext> | ||
) | ||
} | ||
const AccountSubscriptionPage = () => ( | ||
<Stack> | ||
<Seo title="My account" /> | ||
<AccountHeader /> | ||
<AccountContent /> | ||
</Stack> | ||
) | ||
export default AccountSubscriptionPage |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 { Flex } from '@chakra-ui/layout' | ||
import { Board } from 'components/board/Board' | ||
import { Seo } from 'components/Seo' | ||
import { TypebotHeader } from 'components/shared/TypebotHeader' | ||
import { EditorContext } from 'contexts/EditorContext' | ||
import { KBarProvider } from 'kbar' | ||
import React from 'react' | ||
import { actions } from 'libs/kbar' | ||
import { KBar } from 'components/shared/KBar' | ||
|
||
const TypebotEditPage = () => ( | ||
<EditorContext> | ||
<Seo title="Editor" /> | ||
<KBarProvider actions={actions}> | ||
<KBar /> | ||
<Flex overflow="hidden" h="100vh" flexDir="column"> | ||
<TypebotHeader /> | ||
<Board /> | ||
</Flex> | ||
</KBarProvider> | ||
</EditorContext> | ||
) | ||
export default TypebotEditPage |
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,15 @@ | ||
import { Flex } from '@chakra-ui/layout' | ||
import { ResultsContent } from 'layouts/results/ResultsContent' | ||
import { Seo } from 'components/Seo' | ||
import { TypebotHeader } from 'components/shared/TypebotHeader' | ||
import React from 'react' | ||
|
||
const ResultsPage = () => ( | ||
<Flex overflow="hidden" h="100vh" flexDir="column"> | ||
<Seo title="Share" /> | ||
<TypebotHeader /> | ||
<ResultsContent /> | ||
</Flex> | ||
) | ||
|
||
export default ResultsPage |
15 changes: 15 additions & 0 deletions
15
apps/builder/pages/typebots/[typebotId]/results/analytics.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,15 @@ | ||
import { Flex } from '@chakra-ui/layout' | ||
import { ResultsContent } from 'layouts/results/ResultsContent' | ||
import { Seo } from 'components/Seo' | ||
import { TypebotHeader } from 'components/shared/TypebotHeader' | ||
import React from 'react' | ||
|
||
const AnalyticsPage = () => ( | ||
<Flex overflow="hidden" h="100vh" flexDir="column"> | ||
<Seo title="Analytics" /> | ||
<TypebotHeader /> | ||
<ResultsContent /> | ||
</Flex> | ||
) | ||
|
||
export default AnalyticsPage |
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,15 @@ | ||
import { Flex } from '@chakra-ui/layout' | ||
import { Seo } from 'components/Seo' | ||
import { SettingsContent } from 'components/settings/SettingsContent' | ||
import { TypebotHeader } from 'components/shared/TypebotHeader' | ||
import React from 'react' | ||
|
||
const SettingsPage = () => ( | ||
<Flex overflow="hidden" h="100vh" flexDir="column"> | ||
<Seo title="Settings" /> | ||
<TypebotHeader /> | ||
<SettingsContent /> | ||
</Flex> | ||
) | ||
|
||
export default SettingsPage |
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,15 @@ | ||
import { Flex } from '@chakra-ui/layout' | ||
import { Seo } from 'components/Seo' | ||
import { ShareContent } from 'components/share/ShareContent' | ||
import { TypebotHeader } from 'components/shared/TypebotHeader' | ||
import React from 'react' | ||
|
||
const SharePage = () => ( | ||
<Flex overflow="hidden" h="100vh" flexDir="column"> | ||
<Seo title="Share" /> | ||
<TypebotHeader /> | ||
<ShareContent /> | ||
</Flex> | ||
) | ||
|
||
export default SharePage |
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,15 @@ | ||
import { Flex } from '@chakra-ui/layout' | ||
import { Seo } from 'components/Seo' | ||
import { TypebotHeader } from 'components/shared/TypebotHeader' | ||
import { ThemeContent } from 'components/theme/ThemeContent' | ||
import React from 'react' | ||
|
||
const ThemePage = () => ( | ||
<Flex overflow="hidden" h="100vh" flexDir="column"> | ||
<Seo title="Theme" /> | ||
<TypebotHeader /> | ||
<ThemeContent /> | ||
</Flex> | ||
) | ||
|
||
export default ThemePage |
Oops, something went wrong.