Skip to content

Commit

Permalink
more edit
Browse files Browse the repository at this point in the history
  • Loading branch information
alanwu4321 committed Jul 14, 2023
1 parent d052a9e commit 27312ae
Show file tree
Hide file tree
Showing 11 changed files with 532 additions and 35 deletions.
113 changes: 78 additions & 35 deletions pages/internship.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ import Community from '@/components/Community';
import { useEffect } from 'react';
import { useAnalytics } from '../src/utils/analytics';
import { useTranslation } from 'react-i18next';
import CallToActionWithVideo, { SplitWithImage } from '@/components/CTA';
import GridListWithCTA from '@/components/GridCTA';

const InternshipPage = () => {
const { t } = useTranslation();
Expand Down Expand Up @@ -194,49 +196,24 @@ const InternshipPage = () => {
<Box m={6}>
<Divider />
</Box>

<Flex
textAlign={'center'}
// textAlign={'center'}
justifyContent={'center'}
direction={'column'}
width={'full'}
overflow={'hidden'}
>
<Box width={{ base: 'full', sm: 'lg', lg: 'xl' }} margin={'auto'}>
<Heading
py={5}
fontSize={34}
fontFamily={'body'}
fontWeight={'bold'}
color={useColorModeValue('gray.700', 'gray.50')}
>
{t('internship.Quantitative Trading Internship')}
</Heading>
<Button
as='a'
href='mailto:[email protected]'
target={'_blank'}
mt={1}
mb={5}
w={'full'}
maxW={'3xs'}
bg={'blue.400'}
color={'white'}
rounded={'lg'}
boxShadow={'0 5px 20px 0px rgb(63 115 255 / 43%)'}
_hover={{
bg: 'blue.500',
}}
_focus={{
bg: 'blue.500',
}}
>
Apply Now
</Button>

<Box width={{ base: 'full', sm: 'xl', lg: '3xl' }} margin={'auto'}>
<SplitWithImage />


</Box>
<Accordion
defaultIndex={[0]}
width='100%'
maxW='2xl'
maxW='3xl'
rounded='lg'
mx={'auto'}
>
Expand Down Expand Up @@ -524,7 +501,8 @@ const InternshipPage = () => {
</AccordionPanel>
</AccordionItem>
</Accordion>
<Center>

{/* <Center>
<Stack
spacing={'40px'}
align={'center'}
Expand Down Expand Up @@ -559,7 +537,7 @@ const InternshipPage = () => {
</Button>
</Box>
</Stack>
</Center>
</Center> */}
</Flex>
<Box m={6}>
<Divider />
Expand All @@ -584,6 +562,7 @@ const InternshipPage = () => {
</Heading>
</Box>
<Flex
width={{ base: 'full', sm: 'xl', lg: '4xl' }} margin={'auto'}
flexWrap='wrap'
justifyContent='center'
marginX={`calc(${spacing} / -2)`}
Expand Down Expand Up @@ -954,11 +933,75 @@ const InternshipPage = () => {
</Stack>
</Box>
</Center>
<Center
py={12}
marginBottom={spacing}
_even={{
marginX: spacing,
}}
>
<Box
role={'group'}
p={6}
maxW={'330px'}
w={'200px'}
bg={useColorModeValue('white', 'gray.800')}
boxShadow={'2xl'}
rounded={'lg'}
pos={'relative'}
zIndex={1}
>
<Box
rounded={'lg'}
mt={-12}
pos={'relative'}
height={'115px'}
width={'155px'}
_after={{
transition: 'all .3s ease',
content: '""',
w: 'full',
h: 'full',
pos: 'absolute',
top: 3,
left: -5,
backgroundImage: '/assets/images/bca.jpeg',
filter: 'blur(20px)',
zIndex: -1,
}}
_groupHover={{
_after: {
filter: 'blur(20px)',
},
}}
>
<Image
rounded={'lg'}
height={115}
width={155}
objectFit={'contain'}
src={'/assets/images/bca.jpeg'}
/>
</Box>
<Stack pt={10} align={'center'}>
<Heading
fontSize={'2xl'}
fontFamily={'body'}
fontWeight={500}
>
BCA
</Heading>
</Stack>
</Box>
</Center>
</Flex>
</Flex>
<Box m={6}>
<Divider />
</Box>
<Box width={{ base: 'full', sm: 'xl', lg: '3xl' }} margin={'auto'}>
<GridListWithCTA />
</Box>
<Center>
<Stack
spacing={'40px'}
Expand Down
Binary file added public/assets/images/CA實習生文宣 (1).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/images/Frame 8836.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/images/bca.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/images/ca_scene.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/images/ca_scene1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/images/ca_scene2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/images/ca_scene3.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 27312ae

Please sign in to comment.