diff --git a/src/components/styledComponents/StyledContactForm.tsx b/src/components/styledComponents/StyledContactForm.tsx index 533c035..88b7dab 100644 --- a/src/components/styledComponents/StyledContactForm.tsx +++ b/src/components/styledComponents/StyledContactForm.tsx @@ -1,6 +1,6 @@ import styled from "styled-components"; -export const StyledContactForm = styled.div` +export const StyledContactForm = styled.form` position: relative; margin-block: 1rem; diff --git a/src/pages/home/PhotoHeader.tsx b/src/pages/home/PhotoHeader.tsx index d616b5d..eeee0bb 100644 --- a/src/pages/home/PhotoHeader.tsx +++ b/src/pages/home/PhotoHeader.tsx @@ -25,7 +25,7 @@ export const PhotoHeader = () => { sirCris
Lombardo -

Tasteful websites for people who know the power of going beyond boundariesFRONT-END DEVELOPER SPECIALIZED IN BUILDING & DESIGNING MODERN WEBSITES

+

SPECIALIZING IN BUILDING SMOOTH websites for people who know value of user experience

view works → diff --git a/src/pages/home/index.tsx b/src/pages/home/index.tsx index 3502ff5..8dcc3ca 100644 --- a/src/pages/home/index.tsx +++ b/src/pages/home/index.tsx @@ -5,7 +5,6 @@ import { HorizontalBubbles } from "../../components/Bubble"; import { TransitionTitle } from "../../components/TransitionTitle"; import { StyledHomeLink } from "../../components/styledComponents/StyledHomePage"; import { ArtNav } from "../art"; -import WorkPage from "../work"; function HomePage() { return ( diff --git a/src/pages/work/WorkSection.tsx b/src/pages/work/WorkSection.tsx index f4eac25..6aa8c9c 100644 --- a/src/pages/work/WorkSection.tsx +++ b/src/pages/work/WorkSection.tsx @@ -25,21 +25,26 @@ export const DetailedWorkSection = (props: IDetailedWorkSection) => ( ) -export const WorkSection = ({ img, title, role, link, description, details }: IWorkSection) => { +export const WorkSection = ({ img, + title, + // role, + link, + // description, + // details +}: IWorkSection) => { return ( - - -
- -
-

{title}

- {/*

{role}

*/} -
- -
- - {/* {details && description} */} -
-
+ + +
+ +
+

{title}

+ {/*

{role}

*/} +
+
+ + {/* {details && description} */} +
+
); }; \ No newline at end of file diff --git a/src/pages/work/index.tsx b/src/pages/work/index.tsx index 5dbb6e3..5e94b50 100644 --- a/src/pages/work/index.tsx +++ b/src/pages/work/index.tsx @@ -6,11 +6,11 @@ import { Clock, DigitalClock } from "../../components/Clock"; import { StyledClockContainer, StyledWorkPage, - StyledWorkPageContainer, + // StyledWorkPageContainer, } from "../../components/styledComponents/StyledWorkPage"; -import { StyledHomeLink } from "../../components/styledComponents/StyledHomePage"; +// import { StyledHomeLink } from "../../components/styledComponents/StyledHomePage"; import { SpringBubbles } from "../../components/Bubble"; -import { DetailedWorkSection, WorkSection } from "./WorkSection"; +import { DetailedWorkSection } from "./WorkSection"; import { workLibrary } from "./workLib";