-
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.
- Loading branch information
1 parent
5e33a35
commit 5127a40
Showing
18 changed files
with
3,688 additions
and
284 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import { Box, Grid, GridItem, Heading, Text } from '@chakra-ui/react' | ||
import { LinkedInPost1, LinkedInPost2, LinkedInPost3 } from './components/LinkedInPosts' | ||
import { useTranslation } from 'react-i18next' | ||
|
||
const Blog = () => { | ||
const { t } = useTranslation() | ||
|
||
return ( | ||
<Box id="blog" py={10} px={{ base: 4, md: 8 }} h="100vh"> | ||
<Box mb={6} mt="6vh" ml="10vw"> | ||
<Heading as="h2" size="lg" mb={4} textAlign="left"> | ||
{t('blog')} | ||
</Heading> | ||
<Text fontSize="1em" color="gray.500" textAlign="left"> | ||
{t('myLinkedInArticles')} | ||
</Text> | ||
</Box> | ||
<Box ml="10vw"> | ||
<Grid templateColumns="repeat(auto-fit, minmax(300px, 1fr))" justifyContent="center" alignItems="center" w="100%"> | ||
<GridItem display="flex" justifyContent="center" maxW="350px" height="auto"> | ||
<Box border="1px solid #ccc" borderRadius="md" overflow="hidden" width="100%" height="450px" boxShadow="md"> | ||
<LinkedInPost1 /> | ||
</Box> | ||
</GridItem> | ||
<GridItem display="flex" justifyContent="center" maxW="350px" height="auto"> | ||
<Box border="1px solid #ccc" borderRadius="md" overflow="hidden" width="100%" height="450px" boxShadow="md"> | ||
<LinkedInPost2 /> | ||
</Box> | ||
</GridItem> | ||
<GridItem display="flex" justifyContent="center" maxW="350px" height="auto"> | ||
<Box border="1px solid #ccc" borderRadius="md" overflow="hidden" width="100%" height="450px" boxShadow="md"> | ||
<LinkedInPost3 /> | ||
</Box> | ||
</GridItem> | ||
</Grid> | ||
</Box> | ||
</Box> | ||
) | ||
} | ||
|
||
export default Blog |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import { Box, Card, Text } from '@chakra-ui/react' | ||
import { useTranslation } from 'react-i18next' | ||
import SocialLinks from './SocialLinks' | ||
|
||
const Home = () => { | ||
const { t } = useTranslation() | ||
|
||
return ( | ||
<Box as="section" minH="100vh" w="100%" bgImage="url('/fondo.webp')" bgSize="cover" bgPosition="center" display="flex" alignItems="center" justifyContent="flex-start" px={{ base: 4, md: 8 }}> | ||
<Box color="white" maxW="container.md"> | ||
|
||
<Card bgColor="gray.800" p="8" ml="4vw" mt="8vh" rounded="xl" opacity={0.9}> | ||
<Text fontSize={{ base: '3xl', md: '5xl' }} fontWeight="bolder"> | ||
{t('homeHeader')} | ||
</Text> | ||
<Text fontSize={{ base: 'md', md: '2em' }}>{t('homeSubHeader')}</Text> | ||
<Text fontSize="lg" lineHeight="taller" textAlign="left"> | ||
{t('aboutMeParagraph')} | ||
</Text> | ||
<SocialLinks/> | ||
</Card> | ||
</Box> | ||
</Box> | ||
) | ||
} | ||
|
||
export default Home |
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.