-
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
d453d85
commit c017179
Showing
15 changed files
with
16,441 additions
and
11,645 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
nodeLinker: node-modules |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
File renamed without changes.
File renamed without changes.
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,20 @@ | ||
import { Box, Button, Flex, Text } from '@radix-ui/themes'; | ||
|
||
import * as style from '~/components/Header/header.css'; | ||
|
||
const Header = () => { | ||
return ( | ||
<section> | ||
<Box className={style.wrapper} position={'sticky'} p={'3'}> | ||
<Flex display={'flex'} align={'center'} justify={'between'}> | ||
<Text weight={'bold'} size={'6'}> | ||
{"Kenzo's Portfolio"} | ||
</Text> | ||
<Button className={style.FilledButton}>🤝 contact me</Button> | ||
</Flex> | ||
</Box> | ||
</section> | ||
); | ||
}; | ||
|
||
export default Header; |
File renamed without changes.
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,31 @@ | ||
import { Button, Container, Flex, Text } from '@radix-ui/themes'; | ||
|
||
import * as style from '~/sections/Eyecatch/eyecatch.css'; | ||
|
||
const Eyecatch = () => { | ||
return ( | ||
<section> | ||
<Flex direction={'column'} gap={'6'} mt={'9'}> | ||
<Container> | ||
<Text weight={'bold'} size={'9'} className={style.text}> | ||
Kenzo Wada. | ||
<br /> | ||
Modern, Young and Friendly Frontend Enginner Ever. | ||
</Text> | ||
</Container> | ||
<Container> | ||
<Flex gap={'6'}> | ||
<Button size={'4'} variant="outline" className={style.OutlinedButton}> | ||
❤️ about me | ||
</Button> | ||
<Button size={'4'} className={style.FilledButton}> | ||
🤝 Contact Me!! | ||
</Button> | ||
</Flex> | ||
</Container> | ||
</Flex> | ||
</section> | ||
); | ||
}; | ||
|
||
export default Eyecatch; |
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,71 @@ | ||
import { Box, Container, Flex, Text } from '@radix-ui/themes'; | ||
|
||
import * as style from '~/sections/Skill/skill.css'; | ||
|
||
const skillData = [ | ||
{ | ||
title: 'Language', | ||
levels: { | ||
Skilled: [{ name: 'TypeScript' }, { name: 'JavaScript' }], | ||
Able: [{ name: 'Go' }, { name: 'Python' }], | ||
Interested: [{ name: 'Rust' }, { name: 'Dart' }], | ||
}, | ||
}, | ||
{ | ||
title: 'Frontend Framework', | ||
levels: { | ||
Skilled: [{ name: 'React.js' }, { name: 'Next.js' }], | ||
Able: [{ name: 'Astro.js' }, { name: 'Gatsby' }], | ||
Interested: [{ name: 'Solid.js' }, { name: 'Svelte' }, { name: 'Remix' }, { name: 'qwik' }], | ||
}, | ||
}, | ||
{ | ||
title: 'Runtime', | ||
levels: { | ||
Skilled: [{ name: 'Node.js' }], | ||
Able: [{ name: 'bun' }], | ||
Interested: [{ name: 'Deno' }], | ||
}, | ||
}, | ||
]; | ||
|
||
const Skills = () => { | ||
return ( | ||
<Flex direction="column" gap="6" mt="9"> | ||
<Container id="skills"> | ||
<Flex direction="column" gap="6"> | ||
<Text weight="bold" size="9"> | ||
# Skills. | ||
</Text> | ||
<Flex gap={'9'} justify={'between'} wrap={'wrap'}> | ||
{skillData.map((category, categoryIndex) => ( | ||
<Flex direction="column" gap="3" key={categoryIndex}> | ||
<Text weight="bold" size="8"> | ||
[{category.title}] | ||
</Text> | ||
{Object.entries(category.levels).map(([level, skills], levelIndex) => ( | ||
<Flex direction="column" gap="3" key={levelIndex}> | ||
<Box> | ||
<Text size={'7'} weight={'bold'} className={style.underlinedText}> | ||
- {level} | ||
</Text> | ||
</Box> | ||
<Flex gap="6" wrap="wrap"> | ||
{skills.map((skill, skillIndex) => ( | ||
<Flex key={skillIndex} align="center" gap="3"> | ||
<Text size="6">{skill.name}</Text> | ||
</Flex> | ||
))} | ||
</Flex> | ||
</Flex> | ||
))} | ||
</Flex> | ||
))} | ||
</Flex> | ||
</Flex> | ||
</Container> | ||
</Flex> | ||
); | ||
}; | ||
|
||
export default Skills; |
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,7 @@ | ||
import { style } from '@vanilla-extract/css'; | ||
|
||
const underlinedText = style({ | ||
background: 'linear-gradient(transparent 60%, #fbe32d 40%)', | ||
}); | ||
|
||
export { underlinedText }; |
Oops, something went wrong.