-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feat/add-tests-github-action
- Loading branch information
Showing
30 changed files
with
122 additions
and
228 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 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 |
---|---|---|
@@ -1,18 +1,7 @@ | ||
import { getCookies } from '@/app/lib/getCookies'; | ||
import App from '@/app/ui/app/App'; | ||
|
||
export const dynamic = 'force-dynamic'; | ||
|
||
const Page = async () => { | ||
const { activeTheme, welcomeScreenClosed } = getCookies(); | ||
|
||
return ( | ||
<App | ||
starterVariant="buy" | ||
activeTheme={activeTheme} | ||
welcomeScreenClosedCookie={welcomeScreenClosed === 'true' ? true : false} | ||
/> | ||
); | ||
return <App starterVariant="buy" />; | ||
}; | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import App from '@/app/ui/app/App'; | ||
|
||
const Page = async () => { | ||
return <App starterVariant="default" />; | ||
}; | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,8 @@ | ||
import { getCookies } from '@/app/lib/getCookies'; | ||
import App from '@/app/ui/app/App'; | ||
|
||
export const dynamic = 'force-dynamic'; | ||
|
||
const Page = () => { | ||
const { activeTheme } = getCookies(); | ||
|
||
return ( | ||
<App | ||
starterVariant="default" | ||
activeTheme={activeTheme} | ||
welcomeScreenClosedCookie={true} | ||
/> | ||
); | ||
return <App starterVariant="default" />; | ||
}; | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,5 @@ | ||
import { getCookies } from '../lib/getCookies'; | ||
import App from '../ui/app/App'; | ||
|
||
export const dynamic = 'force-dynamic'; | ||
|
||
export default function Page() { | ||
const { activeTheme, welcomeScreenClosed } = getCookies(); | ||
|
||
return ( | ||
<App | ||
starterVariant="default" | ||
activeTheme={activeTheme} | ||
welcomeScreenClosedCookie={welcomeScreenClosed === 'true' ? true : false} | ||
/> | ||
); | ||
return <App starterVariant="default" />; | ||
} |
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,7 @@ | ||
import App from '@/app/ui/app/App'; | ||
|
||
const Page = async () => { | ||
return <App starterVariant="refuel" />; | ||
}; | ||
|
||
export default Page; |
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
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.