From d296486ad0e81db4212cce0a688491aef47adc6a Mon Sep 17 00:00:00 2001 From: Adam Plesnik Date: Tue, 1 Oct 2024 15:11:23 +0200 Subject: [PATCH] Update colors, layout --- index.html | 2 +- src/content/LoveToDo.tsx | 6 ++---- src/pages/Home.tsx | 4 ++-- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/index.html b/index.html index bd8efa9..6c09650 100644 --- a/index.html +++ b/index.html @@ -5,7 +5,7 @@ Adam Plesník, design engineer - +
diff --git a/src/content/LoveToDo.tsx b/src/content/LoveToDo.tsx index dc8c390..22788cc 100644 --- a/src/content/LoveToDo.tsx +++ b/src/content/LoveToDo.tsx @@ -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 ( - +
    {skills.map((skill, i) => (
  • diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx index 0d698f3..01ee254 100644 --- a/src/pages/Home.tsx +++ b/src/pages/Home.tsx @@ -11,11 +11,12 @@ import Page from '../layouts/Page' const Home = () => { return ( <> -
    +
    +
    @@ -25,7 +26,6 @@ const Home = () => {
    -
    )