Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
128 changes: 128 additions & 0 deletions src/components/Technologies.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
/* eslint-disable arrow-body-style */
/* eslint-disable react/function-component-definition */
import React from 'react';
import { Box, Image, Text } from '@chakra-ui/react';
import react from '../images/react.svg';
import typescript from '../images/typescript.svg';
import node from '../images/nodejs.svg';
import go from '../images/golang.svg';
import nextjs from '../images/nextjs.svg';
import cucicon from '../images/cucicon.svg';

const cards = [
{
title: 'React',
description: 'React is a JavaScript library for building user interfaces.',
image: react,
},
{
title: 'NodeJS',
description:
"Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine.",
image: node,
},
{
title: 'NextJS',
description:
'Next.js is a framework for server-rendered React applications.',
image: nextjs,
},
{
title: 'TypeScript',
description:
'TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.',
image: typescript,
},
{
title: 'React',
description: 'React is a JavaScript library for building user interfaces.',
image: react,
},
{
title: 'Go',
description:
'TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wrong description

image: go,
},
];
Comment on lines +12 to +47
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Very nice!


const Technologies: React.FC = () => {
return (
<Box
w="100%"
h="800px"
bgGradient="linear-gradient(to bottom, #0b132b, #1c2541)"
position="relative"
zIndex={1}
>
<Image
src={cucicon}
position="absolute"
top="55%"
left="17%"
width="420px"
height="360px"
zIndex={-1}
/>
<Image
src={cucicon}
position="absolute"
top="10%"
left="55%"
width="420px"
height="360px"
zIndex={-1}
/>
Comment on lines +58 to +75
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add animations for this images

<Box
w="100%"
h="800px"
maxW="1120px"
m="0 auto"
// bgColor="#0B132B"
textAlign="center"
>
<Text
fontSize="36px"
fontWeight="bold"
color="white"
marginTop="50px"
marginBottom="50px"
>
Tecnologias mais usadas
</Text>
<Box
display="flex"
flexWrap="wrap"
justifyContent="space-between"
marginBottom="50px"
>
{cards.map(card => (
<Box
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add design effects from cards here

w="255px"
h="271px"
display="flex"
flexDir="column"
alignItems="center"
justifyContent="space-around"
borderRadius="10px"
padding="20px"
margin="20px"
bgColor="white"
dropShadow="0px 0px 20px rgba(255, 255, 255, 0.6)"
>
<Image src={card.image} w="148px" h="100px" />
<Text fontSize="24px" fontWeight="normal" color="#5A5A66">
{card.title}
</Text>
<Text fontSize="12px" fontWeight="normal" color="#BFBFCC">
{card.description}
</Text>
</Box>
))}
</Box>
</Box>
</Box>
);
};

export default Technologies;
17 changes: 17 additions & 0 deletions src/images/cucicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/images/golang.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/images/nextjs.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/images/nodejs.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/images/react.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/images/typescript.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@ import * as React from 'react';
import { Box } from '@chakra-ui/react';
import Navibar from '../components/Navibar';
import VslSection from '../components/VslSection';
import Technologies from '../components/Technologies';

function IndexPage() {
return (
<Box w="100vw" h="100vh" bgColor="#0B132B">
<Box w="100vw" h="100vh" bgColor="#0B132B" overflowX="hidden">
<Navibar />
<VslSection />
<Technologies />
</Box>
);
}
Expand Down