-
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.
Merge pull request #10 from nextimecode/release/0.8.0
Release/0.8.0
- Loading branch information
Showing
17 changed files
with
5,686 additions
and
73 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
schema: https://api-us-west-2.hygraph.com/v2/cl4pafqr71v2801xl8yq82eeg/master | ||
documents: './src/graphql/**/*.graphql' | ||
generates: | ||
./src/graphql/generated.ts: | ||
plugins: | ||
- typescript | ||
- typescript-operations | ||
- typescript-react-apollo | ||
config: | ||
reactApolloVersion: 3 | ||
withHooks: true | ||
withHoc: false | ||
withComponent: false |
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 Image from 'next/image' | ||
|
||
export function NextLogo() { | ||
return <Image src="/images/logos/logo_nextime.svg" alt="NeXTIME Logo" width={146} height={45} /> | ||
} |
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,13 @@ | ||
import React, { PropsWithChildren } from 'react' | ||
import { Button } from '@chakra-ui/react' | ||
|
||
type Props = { | ||
bg?: 'primary' | 'primary-dark' | 'white' | 'dark' | undefined | ||
interface NextButtonProps { | ||
bg?: 'next-blue.400' | 'next-dark.200' | undefined | ||
} | ||
|
||
const NextButton = ({ bg = 'primary', children }: PropsWithChildren<Props>) => ( | ||
<Button bg={bg}>{children}</Button> | ||
) | ||
|
||
export default NextButton | ||
export default function NextButton({ | ||
bg = 'next-blue.400', | ||
children | ||
}: PropsWithChildren<NextButtonProps>) { | ||
return <Button bg={bg}>{children}</Button> | ||
} |
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,9 +1,7 @@ | ||
import React from 'react' | ||
|
||
type Props = { | ||
label: string | ||
} | ||
|
||
const Example = ({ label }: Props) => <h1 className="h1">{label}</h1> | ||
|
||
export default Example | ||
export function Example({ label }: Props) { | ||
return <h1 className="h1">{label}</h1> | ||
} |
Oops, something went wrong.
f2446ba
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
nextime-nextjs-chakra-ui-start – ./
nextime-nextjs-chakra-ui-start-git-main-nextimecode.vercel.app
nextime-nextjs-chakra-ui-start.vercel.app
nextime-nextjs-chakra-ui-start-nextimecode.vercel.app