Compare commits
1 Commits
claude-1.1
...
pause-cham
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
816b41adad |
@@ -73,7 +73,7 @@ export default function ProjectMenu() {
|
||||
closeOnBlur
|
||||
>
|
||||
<PopoverTrigger>
|
||||
<HStack w="full" onClick={popover.onToggle}>
|
||||
<HStack w="full" justifyContent="space-between" onClick={popover.onToggle}>
|
||||
<Flex
|
||||
p={1}
|
||||
borderRadius={4}
|
||||
@@ -83,10 +83,11 @@ export default function ProjectMenu() {
|
||||
m={{ base: 0, md: 1 }}
|
||||
alignItems="center"
|
||||
justifyContent="center"
|
||||
// onClick={sidebarExpanded ? undefined : openMenu}
|
||||
>
|
||||
<Text>{selectedOrg?.name[0]?.toUpperCase()}</Text>
|
||||
</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}
|
||||
</Text>
|
||||
<Icon as={AiFillCaretDown} boxSize={3} size="xs" color="gray.500" mr={2} />
|
||||
|
||||
@@ -9,8 +9,7 @@
|
||||
"claude-2",
|
||||
"claude-2.0",
|
||||
"claude-instant-1",
|
||||
"claude-instant-1.1",
|
||||
"claude-instant-1.2"
|
||||
"claude-instant-1.1"
|
||||
]
|
||||
},
|
||||
"prompt": {
|
||||
|
||||
@@ -19,6 +19,8 @@ import {
|
||||
useInterval,
|
||||
Image,
|
||||
Flex,
|
||||
Alert,
|
||||
AlertIcon,
|
||||
} from "@chakra-ui/react";
|
||||
import { signIn, useSession } from "next-auth/react";
|
||||
import Head from "next/head";
|
||||
@@ -188,12 +190,18 @@ export default function Signup() {
|
||||
<Heading size="lg" textAlign="center">
|
||||
🏆 Prompt Engineering World Championships
|
||||
</Heading>
|
||||
<CountdownTimer
|
||||
{/* <CountdownTimer
|
||||
date={new Date("2023-08-14T00:00:00Z")}
|
||||
fontSize="2xl"
|
||||
alignSelf="center"
|
||||
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" />
|
||||
|
||||
|
||||
Reference in New Issue
Block a user