Compare commits
1 Commits
claude-1.1
...
pause-cham
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
816b41adad |
@@ -73,7 +73,7 @@ export default function ProjectMenu() {
|
|||||||
closeOnBlur
|
closeOnBlur
|
||||||
>
|
>
|
||||||
<PopoverTrigger>
|
<PopoverTrigger>
|
||||||
<HStack w="full" onClick={popover.onToggle}>
|
<HStack w="full" justifyContent="space-between" onClick={popover.onToggle}>
|
||||||
<Flex
|
<Flex
|
||||||
p={1}
|
p={1}
|
||||||
borderRadius={4}
|
borderRadius={4}
|
||||||
@@ -83,10 +83,11 @@ export default function ProjectMenu() {
|
|||||||
m={{ base: 0, md: 1 }}
|
m={{ base: 0, md: 1 }}
|
||||||
alignItems="center"
|
alignItems="center"
|
||||||
justifyContent="center"
|
justifyContent="center"
|
||||||
|
// onClick={sidebarExpanded ? undefined : openMenu}
|
||||||
>
|
>
|
||||||
<Text>{selectedOrg?.name[0]?.toUpperCase()}</Text>
|
<Text>{selectedOrg?.name[0]?.toUpperCase()}</Text>
|
||||||
</Flex>
|
</Flex>
|
||||||
<Text fontSize="sm" display={{ base: "none", md: "block" }} py={1} flex={1}>
|
<Text fontSize="sm" display={{ base: "none", md: "block" }} py={1}>
|
||||||
{selectedOrg?.name}
|
{selectedOrg?.name}
|
||||||
</Text>
|
</Text>
|
||||||
<Icon as={AiFillCaretDown} boxSize={3} size="xs" color="gray.500" mr={2} />
|
<Icon as={AiFillCaretDown} boxSize={3} size="xs" color="gray.500" mr={2} />
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"claude-2",
|
"claude-2",
|
||||||
"claude-2.0",
|
"claude-2.0",
|
||||||
"claude-instant-1",
|
"claude-instant-1",
|
||||||
"claude-instant-1.1",
|
"claude-instant-1.1"
|
||||||
"claude-instant-1.2"
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"prompt": {
|
"prompt": {
|
||||||
|
|||||||
@@ -19,6 +19,8 @@ import {
|
|||||||
useInterval,
|
useInterval,
|
||||||
Image,
|
Image,
|
||||||
Flex,
|
Flex,
|
||||||
|
Alert,
|
||||||
|
AlertIcon,
|
||||||
} from "@chakra-ui/react";
|
} from "@chakra-ui/react";
|
||||||
import { signIn, useSession } from "next-auth/react";
|
import { signIn, useSession } from "next-auth/react";
|
||||||
import Head from "next/head";
|
import Head from "next/head";
|
||||||
@@ -188,12 +190,18 @@ export default function Signup() {
|
|||||||
<Heading size="lg" textAlign="center">
|
<Heading size="lg" textAlign="center">
|
||||||
🏆 Prompt Engineering World Championships
|
🏆 Prompt Engineering World Championships
|
||||||
</Heading>
|
</Heading>
|
||||||
<CountdownTimer
|
{/* <CountdownTimer
|
||||||
date={new Date("2023-08-14T00:00:00Z")}
|
date={new Date("2023-08-14T00:00:00Z")}
|
||||||
fontSize="2xl"
|
fontSize="2xl"
|
||||||
alignSelf="center"
|
alignSelf="center"
|
||||||
color="gray.500"
|
color="gray.500"
|
||||||
/>
|
/> */}
|
||||||
|
<Alert status="warning" mt={4}>
|
||||||
|
<AlertIcon />
|
||||||
|
We've decided to pause the World Championships for the moment because our systems aren't
|
||||||
|
quite ready. You can still sign up if you're interested and we'll notify you once we
|
||||||
|
reschedule!
|
||||||
|
</Alert>
|
||||||
|
|
||||||
<ApplicationStatus py={8} alignSelf="center" />
|
<ApplicationStatus py={8} alignSelf="center" />
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user