-
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 #29 from DLC-link/feat/flow-vault-fetching-by-uuid
feat: flow vault fetching by UUID
- Loading branch information
Showing
106 changed files
with
1,362 additions
and
1,783 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
File renamed without changes.
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
17 changes: 6 additions & 11 deletions
17
src/app/components/company-website-button/company-website-button.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 |
---|---|---|
@@ -1,18 +1,13 @@ | ||
import { Button, Image } from "@chakra-ui/react"; | ||
import { Button, Image } from '@chakra-ui/react'; | ||
|
||
export function CompanyWebsiteButton(): React.JSX.Element { | ||
const companyWebsiteURL = "https://www.dlc.link/"; | ||
const logoPath = "./images/logos/dlc-link-logo.svg"; | ||
const altText = "DLC.Link Logo"; | ||
const companyWebsiteURL = 'https://www.dlc.link/'; | ||
const logoPath = './images/logos/dlc-link-logo.svg'; | ||
const altText = 'DLC.Link Logo'; | ||
|
||
return ( | ||
<Button | ||
as={"a"} | ||
href={companyWebsiteURL} | ||
variant={"company"} | ||
boxSize={"65px"} | ||
> | ||
<Image src={logoPath} alt={altText} boxSize={"65px"} /> | ||
<Button as={'a'} href={companyWebsiteURL} variant={'company'} boxSize={'65px'}> | ||
<Image src={logoPath} alt={altText} boxSize={'65px'} /> | ||
</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,18 +1,9 @@ | ||
import { Skeleton } from "@chakra-ui/react"; | ||
import { Skeleton } from '@chakra-ui/react'; | ||
|
||
interface CustomSkeletonProps { | ||
height: string; | ||
} | ||
|
||
export function CustomSkeleton({ | ||
height, | ||
}: CustomSkeletonProps): React.JSX.Element { | ||
return ( | ||
<Skeleton | ||
startColor={"white.02"} | ||
endColor={"white.03"} | ||
w={"100%"} | ||
h={height} | ||
/> | ||
); | ||
export function CustomSkeleton({ height }: CustomSkeletonProps): React.JSX.Element { | ||
return <Skeleton startColor={'white.02'} endColor={'white.03'} w={'100%'} h={height} />; | ||
} |
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.