-
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
1 parent
400d184
commit 11e21ad
Showing
27 changed files
with
1,470 additions
and
9,687 deletions.
There are no files selected for viewing
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 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
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 |
---|---|---|
|
@@ -9,8 +9,6 @@ | |
"start": "next start", | ||
"check-types": "tsc", | ||
"test": "start-server-and-test 'yarn dev' 3000 'yarn cypress:run'", | ||
"storybook:dev": "start-storybook -p 6006 -c .storybook", | ||
"storybook:build": "build-storybook -c .storybook", | ||
"cypress:open": "cypress open", | ||
"cypress:run": "cypress run", | ||
"postinstall": "husky install" | ||
|
@@ -21,9 +19,12 @@ | |
"packageManager": "[email protected]", | ||
"dependencies": { | ||
"@artsy/fresnel": "6.1.0", | ||
"@storybook/react": "6.5.15", | ||
"@mdx-js/loader": "2.3.0", | ||
"@mdx-js/react": "2.3.0", | ||
"@next/mdx": "13.2.4", | ||
"@tailwindcss/forms": "0.5.3", | ||
"@tailwindcss/line-clamp": "0.4.2", | ||
"@tailwindcss/typography": "0.5.9", | ||
"@tanstack/react-query": "4.26.1", | ||
"axios": "1.3.4", | ||
"clsx": "1.2.1", | ||
|
@@ -35,17 +36,13 @@ | |
"tailwindcss": "3.2.7" | ||
}, | ||
"devDependencies": { | ||
"@storybook/addon-actions": "6.5.10", | ||
"@storybook/addon-essentials": "6.5.10", | ||
"@storybook/addon-links": "6.5.10", | ||
"@storybook/addon-postcss": "2.0.0", | ||
"@storybook/builder-webpack5": "6.5.10", | ||
"@storybook/manager-webpack5": "6.5.10", | ||
"@types/google.analytics": "0.0.42", | ||
"@types/node": "18.15.0", | ||
"@types/react": "18.0.28", | ||
"@types/react-dom": "18.0.11", | ||
"@typescript-eslint/eslint-plugin": "5.48.2", | ||
"assert": "2.0.0", | ||
"autoprefixer": "10.4.14", | ||
"eslint": "8.32.0", | ||
"eslint-config-next": "13.2.3", | ||
"eslint-config-prettier": "8.6.0", | ||
|
@@ -54,7 +51,6 @@ | |
"prettier": "2.8.3", | ||
"prettier-plugin-tailwindcss": "0.2.1", | ||
"start-server-and-test": "1.12.1", | ||
"storybook-addon-swc": "1.1.8", | ||
"svg-sprite-loader": "6.0.11", | ||
"svgo": "3.0.2", | ||
"svgo-loader": "3.0.3", | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// import Footer from 'containers/footer'; | ||
// import Header from 'containers/header/app'; | ||
|
||
type LayoutProps = { | ||
children: React.ReactNode; | ||
}; | ||
|
||
const Layout: React.FC<LayoutProps> = (props: LayoutProps) => { | ||
const { children } = props; | ||
|
||
return ( | ||
<main className={`flex flex-col font-sans antialiased lg:min-h-screen`}> | ||
<div className="prose relative grow"> | ||
{/* Content */} | ||
{children} | ||
</div> | ||
|
||
{/* <Footer /> */} | ||
</main> | ||
); | ||
}; | ||
|
||
export default Layout; |
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.