Skip to content

Commit

Permalink
Update colors, layout
Browse files Browse the repository at this point in the history
  • Loading branch information
adamplesnik committed Oct 1, 2024
1 parent f7ee805 commit d296486
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Adam Plesník, design engineer</title>
</head>
<body class="bg-gradient-to-bl from-slate-100 to-white to-40% text-zinc-500">
<body class="bg-slate-100 bg-gradient-to-bl text-zinc-500">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
Expand Down
6 changes: 2 additions & 4 deletions src/content/LoveToDo.tsx
Original file line number Diff line number Diff line change
@@ -1,20 +1,18 @@
import Tile from '@/components/Tile'

const skills = [
'React',
'Tailwind CSS',
'TSX/HTML templates',
'CSS + Sass',
'Theme refactoring',
'Figma',
'React',
'CSS animations',
'Framer motion',
'Vue.js',
]

const LoveToDo = () => {
return (
<Tile title="What I love to do" className="shrink-0">
<Tile title="Tech" className="shrink-0">
<ul className="flex flex-col gap-2">
{skills.map((skill, i) => (
<li key={i} className="flex items-center gap-2">
Expand Down
4 changes: 2 additions & 2 deletions src/pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ import Page from '../layouts/Page'
const Home = () => {
return (
<>
<div className="to-white-0 sticky -top-4 z-10 mx-auto w-full max-w-screen-md bg-gradient-to-b from-white to-80% p-8 pt-12">
<div className="to-white-0 sticky top-0 z-10 mx-auto w-full max-w-screen-md bg-gradient-to-b from-slate-100 p-8 pt-12">
<Header />
</div>
<Page>
<Skills />
<Cv />
<div className="flex flex-col md:flex-row md:gap-16">
<LoveToDo />
<div>
Expand All @@ -25,7 +26,6 @@ const Home = () => {
<WebUmeniaTile />
</div>
</div>
<Cv />
</Page>
</>
)
Expand Down

0 comments on commit d296486

Please sign in to comment.