mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-04-23 03:00:31 -04:00
feat(ui): get all tabs working w/ new layout
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import { Flex, Heading } from '@invoke-ai/ui-library';
|
||||
import { memo } from 'react';
|
||||
|
||||
export const WorkflowsLaunchpadPanel = memo(() => {
|
||||
return (
|
||||
<Flex flexDir="column" h="full" w="full" alignItems="center" justifyContent="center" gap={2}>
|
||||
<Flex flexDir="column" w="full" h="full" justifyContent="center" gap={4} px={12} maxW={768}>
|
||||
<Heading mb={4}>Go deep with Workflows.</Heading>
|
||||
</Flex>
|
||||
</Flex>
|
||||
);
|
||||
});
|
||||
WorkflowsLaunchpadPanel.displayName = 'WorkflowsLaunchpadPanel';
|
||||
Reference in New Issue
Block a user